Xinqi Bao's Git
ffbd945b8b796b4d60c27c6d7af1a48ec2aff920
1 /* See LICENSE file for copyright and license details. */
12 return bprintf("%d", getgid());
18 struct passwd
*pw
= getpwuid(geteuid());
21 fprintf(stderr
, "Failed to get username");
25 return bprintf("%s", pw
->pw_name
);
31 return bprintf("%d", geteuid());