diff options
Diffstat (limited to 'src/unistd/getuid.c')
| -rw-r--r-- | src/unistd/getuid.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/unistd/getuid.c b/src/unistd/getuid.c new file mode 100644 index 00000000..8a06b900 --- /dev/null +++ b/src/unistd/getuid.c @@ -0,0 +1,12 @@ +#include "stddef.h" +#include "sys/types.h" +#include <unistd.h> +#include "nonstd/syscall.h" + +uid_t getuid(void) +{ + SCNOFAIL(); +} +/* +POSIX(1) +*/ |
