summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorperry <perry@NetBSD.org>1998-08-04 05:55:56 +0000
committerperry <perry@NetBSD.org>1998-08-04 05:55:56 +0000
commit1801e92fce51b673dcf1aa6faaf04db58aa250b4 (patch)
tree45ed4454588455439b5c5573cafc2a6a7c17fedd /lib
parent974739923bc28c88c26f8687602c847db2c6aafc (diff)
add strchr.c, strrchr.c, memmove.c, memcpy.c, to KSRC for copy to libkern.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/Makefile11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile
index 1a59120129c..0e12ea4ddf7 100644
--- a/lib/libc/Makefile
+++ b/lib/libc/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.75 1998/05/06 18:12:35 mycroft Exp $
+# $NetBSD: Makefile,v 1.76 1998/08/04 05:55:56 perry Exp $
# @(#)Makefile 8.2 (Berkeley) 2/3/94
#
# All library objects contain sccsid strings by default; they may be
@@ -56,9 +56,12 @@ NLS= C.msg Pig.msg de.msg es.msg fi.msg fr.msg nl.msg no.msg sv.msg
LIBKERN= ${.CURDIR}/../../sys/lib/libkern
-KSRCS= bcopy.c bcmp.c bzero.c ffs.c strcat.c strcmp.c strcpy.c strlen.c \
- strncmp.c strncpy.c htonl.c htons.c ntohl.c ntohs.c md5c.c memcmp.c \
- memset.c memchr.c index.c rindex.c
+KSRCS= bcopy.c bcmp.c bzero.c ffs.c \
+ strcat.c strchr.c strcmp.c strcpy.c strlen.c \
+ strncmp.c strncpy.c strrchr.c \
+ htonl.c htons.c ntohl.c ntohs.c md5c.c \
+ memchr.c memcmp.c memcpy.c memmove.c memset.c \
+ index.c rindex.c
.if (${MACHINE_ARCH} != "alpha")
KSRCS+= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \