diff options
author | 2007-05-15 18:42:31 +0000 | |
---|---|---|
committer | 2007-05-15 18:42:31 +0000 | |
commit | 94fd4554194a14f126fba33b837cc68a1df42468 (patch) | |
tree | 576be751a1c5c97064d3c6ae7820ec886743ef77 /lib/libc/arch/arm/string | |
parent | regen (diff) | |
download | wireguard-openbsd-94fd4554194a14f126fba33b837cc68a1df42468.tar.xz wireguard-openbsd-94fd4554194a14f126fba33b837cc68a1df42468.zip |
fix some lint 'xxx used, but not defined' warnings by properly adding
stuff to LSRCS
Diffstat (limited to 'lib/libc/arch/arm/string')
-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 |