summaryrefslogtreecommitdiff
path: root/libc/pwd_grp/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-08 16:45:24 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-08 16:45:24 +0000
commit791312e7259153e1235f14a9a9e5cc6055ce8dfc (patch)
tree81f07808e6af9d42e92a4bba911b3b425f589516 /libc/pwd_grp/Makefile
parentbfb8f8f6ea438e632e808868c44af2bff196cc18 (diff)
Reworked the password stuff to be reentrant. Group stuff is
still needing to be reworked. -Erik
Diffstat (limited to 'libc/pwd_grp/Makefile')
-rw-r--r--libc/pwd_grp/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/pwd_grp/Makefile b/libc/pwd_grp/Makefile
index bdd3c9782..d37efbdf3 100644
--- a/libc/pwd_grp/Makefile
+++ b/libc/pwd_grp/Makefile
@@ -24,8 +24,9 @@ TOPDIR=../
include $(TOPDIR)Rules.mak
LIBC=$(TOPDIR)libc.a
-CSRC=__getpwent.c pwent.c getpwnam.c getpwuid.c putpwent.c getpw.c fgetpwent.c \
- __getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c initgroups.c
+CSRC= pwent.c getpwnam.c getpwuid.c putpwent.c getpw.c fgetpwent.c \
+ __getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c \
+ initgroups.c __getpwent_r.c
COBJS=$(patsubst %.c,%.o, $(CSRC))
OBJS=$(COBJS)