1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:37:34 +00:00

Add getpwent() family of functions to LibC.

Also add a little /etc/passwd database. There's just me in there.
This commit is contained in:
Andreas Kling 2018-10-31 19:49:22 +01:00
parent 819ce91395
commit 9886b27d9c
17 changed files with 175 additions and 25 deletions

View file

@ -7,6 +7,7 @@ __BEGIN_DECLS
extern char** environ;
inline int getpagesize() { return 4096; }
uid_t getuid();
gid_t getgid();
pid_t getpid();