b0401b13bb
- Remove <errno.h> because related functions are in util.c now - Remove corresponding <string.h> if not used otherwise
33 lines
464 B
C
33 lines
464 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <pwd.h>
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "../util.h"
|
|
|
|
const char *
|
|
gid(void)
|
|
{
|
|
return bprintf("%d", getgid());
|
|
}
|
|
|
|
const char *
|
|
username(void)
|
|
{
|
|
struct passwd *pw;
|
|
|
|
if (!(pw = getpwuid(geteuid()))) {
|
|
warn("getpwuid '%d':", geteuid());
|
|
return NULL;
|
|
}
|
|
|
|
return bprintf("%s", pw->pw_name);
|
|
}
|
|
|
|
const char *
|
|
uid(void)
|
|
{
|
|
return bprintf("%d", geteuid());
|
|
}
|