summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-07-02 17:13:27 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-07-02 17:13:27 +0000
commit258fd794fd8be46ca44d89992d264045f1cfdab6 (patch)
tree9e0fc14dd9144d0f118cee028270434eb96acc27 /c/src/lib/libc/Makefile.in
parentPatch from Eric Valette <valette@crf.canon.fr> to clean up the (diff)
downloadrtems-258fd794fd8be46ca44d89992d264045f1cfdab6.tar.bz2
Password and group routines added by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libc/Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/c/src/lib/libc/Makefile.in b/c/src/lib/libc/Makefile.in
index bb2ec1a3d4..3b5dc10273 100644
--- a/c/src/lib/libc/Makefile.in
+++ b/c/src/lib/libc/Makefile.in
@@ -44,7 +44,10 @@ DIRECTORY_SCAN_PIECES=\
opendir closedir readdir rewinddir scandir seekdir telldir getcwd
MALLOC_PIECES=\
- malloc __brk __sbrk \
+ malloc __brk __sbrk
+
+PASSWORD_GROUP_PIECES=\
+ getpwent getgwent
LIBC_GLUE_PIECES=\
__gettod __times \
@@ -78,6 +81,7 @@ C_PIECES=\
$(LIBC_GLUE_PIECES) \
$(BASE_FS_PIECES) \
$(MALLOC_PIECES) \
+ $(PASSWORD_GROUP_PIECES) \
$(TERMIOS_PIECES) \
$(SYSTEM_CALL_PIECES) \
$(DIRECTORY_SCAN_PIECES) \