diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-03 16:51:17 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-03 16:51:17 +0000 |
commit | 50021bfdd093f553459d50e6cac3c5b5fe1585d2 (patch) | |
tree | 71307563df65847ebb771309b52d60b65c7e546f /libc/string/Makefile | |
parent | 0543518c73248d50c60139511b02e75026399de0 (diff) |
strtok_r.c was not being compiled in, so fix that.
Diffstat (limited to 'libc/string/Makefile')
-rw-r--r-- | libc/string/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/string/Makefile b/libc/string/Makefile index 940194050..02a69dfbf 100644 --- a/libc/string/Makefile +++ b/libc/string/Makefile @@ -35,9 +35,9 @@ MOBJ1=index.o rindex.o MSRC2=strsignal.c MOBJ2=strsignal.o psignal.o -CSRC=strpbrk.c strsep.c strstr.c strtok.c strcspn.c config.c strspn.c \ - strcasecmp.c strncasecmp.c strerror.c bcopy.c bzero.c bcmp.c \ - sys_errlist.c +CSRC=strpbrk.c strsep.c strstr.c strtok.c strtok_r.c strcspn.c config.c \ + strspn.c strcasecmp.c strncasecmp.c strerror.c bcopy.c bzero.c \ + bcmp.c sys_errlist.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(MOBJ) $(MOBJ1) $(MOBJ2) $(COBJS) |