1 2 3 4 5 6 7 8 9 10 11 12 13
#include "sys/types.h" #include <pwd.h> #include "stddef.h" struct passwd * getpwuid(uid_t uid) { (void)uid; return NULL; } /* POSIX(1) */