diff options
| author | Warner Losh <imp@FreeBSD.org> | 1999-09-03 06:18:13 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 1999-09-03 06:18:13 +0000 |
| commit | d57bb0b8cd260655013e0618f668cc44dee78a0f (patch) | |
| tree | 341d4262b3fd09d8bac1b4a9837a5e4683296e36 /lib/libc | |
| parent | 98548f56e6b22ce4de3e6c15b3478659f57e046f (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/string/Makefile.inc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/libc/string/Makefile.inc b/lib/libc/string/Makefile.inc index 2f6f93784794..0ef5069f1651 100644 --- a/lib/libc/string/Makefile.inc +++ b/lib/libc/string/Makefile.inc @@ -8,9 +8,9 @@ CFLAGS += -I${.CURDIR}/../libc/locale # machine-independent string sources MISRCS+=bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \ memcpy.c memmove.c memset.c rindex.c strcasecmp.c strcat.c strchr.c \ - strcmp.c strcoll.c strcpy.c strcspn.c strdup.c strerror.c strlen.c \ - strmode.c strncat.c strncmp.c strncpy.c strpbrk.c strrchr.c strsep.c \ - strspn.c strstr.c strtok.c strxfrm.c swab.c + strcmp.c strcoll.c strcpy.c strcspn.c strdup.c strerror.c strlcat.c \ + strlcpy.c strlen.c strmode.c strncat.c strncmp.c strncpy.c strpbrk.c \ + strrchr.c strsep.c strspn.c strstr.c strtok.c strxfrm.c swab.c # machine-dependent string sources .include "${.CURDIR}/../libc/${MACHINE_ARCH}/string/Makefile.inc" @@ -19,13 +19,14 @@ MISRCS+=bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \ MAN3+= bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 index.3 memccpy.3 memchr.3 \ memcmp.3 memcpy.3 memmove.3 memset.3 rindex.3 strcasecmp.3 strcat.3 \ strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strdup.3 strerror.3 \ - string.3 strlen.3 strmode.3 strpbrk.3 strrchr.3 strsep.3 strspn.3 \ - strstr.3 strtok.3 strxfrm.3 swab.3 + string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strrchr.3 strsep.3 \ + strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3 MLINKS+=strcasecmp.3 strncasecmp.3 MLINKS+=strcat.3 strncat.3 MLINKS+=strcmp.3 strncmp.3 MLINKS+=strcpy.3 strncpy.3 MLINKS+=strerror.3 perror.3 strerror.3 sys_errlist.3 strerror.3 sys_nerr.3 +MLINKS+=strlcpy.3 strlcat.3 MLINKS+=strtok.3 strtok_r.3 .endif |
