diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-08-11 04:17:52 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-08-11 04:17:52 +0000 |
commit | 1459bf3832b1440e126d96d9177b88edde883956 (patch) | |
tree | 63a8984f8fcaa622bdc5b7a40969da217075917c /libc/string/Makefile | |
parent | 9c0d25bc675620344cfa3304f81c93e7105a2220 (diff) |
I just wrote a stpncpy() since someone wanted it
Diffstat (limited to 'libc/string/Makefile')
-rw-r--r-- | libc/string/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/Makefile b/libc/string/Makefile index c9b70829e..748a935eb 100644 --- a/libc/string/Makefile +++ b/libc/string/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)Rules.mak MSRC=string.c MOBJ=strlen.o strcat.o strcpy.o strchr.o strcmp.o strncat.o strncpy.o \ strncmp.o strrchr.o strdup.o memcpy.o memccpy.o memset.o \ - memmove.o memcmp.o memchr.o ffs.o strnlen.o strxfrm.o stpcpy.o + memmove.o memcmp.o memchr.o ffs.o strnlen.o strxfrm.o stpcpy.o stpncpy.o ifeq ($(HAS_LOCALE),true) MOBJ += strcoll.o |