I'm going to nuke strtol() for now. Now I need strncmp() and rather

that add it too, and end up fighting an unwanted battle right now,
I'm just going to back away from both and start including my own private
copies of everything.  I'm not going to use _anything_ from libkern
until we decide its fate.
This commit is contained in:
Jordan K. Hubbard 1994-10-26 11:14:21 +00:00
parent 07e9e1dbd1
commit 3af384bf88
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3891

View File

@ -1,12 +1,12 @@
# @(#)Makefile 7.9 (Berkeley) 6/1/93
# $Id: Makefile,v 1.3 1994/09/15 15:41:47 paul Exp $
# $Id: Makefile,v 1.4 1994/10/25 14:57:56 jkh Exp $
LIB= kern
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/.. -DKERNEL
SRCS= adddi3.c anddi3.c ashldi3.c ashrdi3.c bcmp.c cmpdi2.c divdi3.c \
ffs.c iordi3.c locc.c lshldi3.c lshrdi3.c mcount.c moddi3.c \
muldi3.c negdi2.c notdi2.c qdivrem.c random.c rindex.c scanc.c \
skpc.c strcat.c strcmp.c strcpy.c strlen.c strncpy.c strtol.c \
skpc.c strcat.c strcmp.c strcpy.c strlen.c strncpy.c \
subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
.if exists(${.CURDIR}/${MACHINE}/Makefile.inc)