diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-31 19:49:22 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-31 19:54:25 +0100 |
commit | 9886b27d9cc67221efc8ee7e277570d146ee9992 (patch) | |
tree | 5021bcfb8c68c0f7a7bc371240fbc35c514329bc /Base | |
parent | 819ce91395804d4ae9ac07d0080d3cfbed4ea258 (diff) | |
download | serenity-9886b27d9cc67221efc8ee7e277570d146ee9992.zip |
Add getpwent() family of functions to LibC.
Also add a little /etc/passwd database. There's just me in there.
Diffstat (limited to 'Base')
-rw-r--r-- | Base/etc/passwd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Base/etc/passwd b/Base/etc/passwd new file mode 100644 index 0000000000..82d18b5b3d --- /dev/null +++ b/Base/etc/passwd @@ -0,0 +1,2 @@ +root:x:0:0:root:/:/bin/sh +andreas:x:100:100:Andreas Kling,,,:/users/andreas:/bin/sh |