diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-05-15 18:42:32 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-05-15 18:42:32 +0000 |
commit | 6d46f071808b730d8f0858ab841be75589a1b62e (patch) | |
tree | 7674227ed199358ecd624079a829d35b0114bf2b /lib/libc/arch/arm | |
parent | 70f435790155c037fabac05bcd2768ab932c04f0 (diff) |
fix some lint 'xxx used, but not defined' warnings by properly adding
stuff to LSRCS
Diffstat (limited to 'lib/libc/arch/arm')
-rw-r--r-- | lib/libc/arch/arm/string/Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/arch/arm/string/Makefile.inc b/lib/libc/arch/arm/string/Makefile.inc index 6a6a24d20f8..64e344b6169 100644 --- a/lib/libc/arch/arm/string/Makefile.inc +++ b/lib/libc/arch/arm/string/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.2 2004/02/01 05:40:52 drahn Exp $ +# $OpenBSD: Makefile.inc,v 1.3 2007/05/15 18:42:31 otto Exp $ # $NetBSD: Makefile.inc,v 1.5 2002/11/23 14:26:04 chris Exp $ SRCS+= memcpy.S _memcpy.S bcopy.S memmove.S memset.S bzero.S ffs.S strcmp.S @@ -7,3 +7,6 @@ SRCS+= bcmp.c index.c memchr.c \ rindex.c strcat.c strcpy.c strcspn.c strlen.c \ strncat.c strncpy.c strpbrk.c strsep.c \ strspn.c strstr.c swab.c strlcpy.c strlcat.c + +LSRCS+= memcpy.c bcopy.c memmove.c memset.c bzero.c ffs.c strcmp.s strncmp.c \ + memcmp.c |