diff options
author | 2007-05-17 04:32:00 +0000 | |
---|---|---|
committer | 2007-05-17 04:32:00 +0000 | |
commit | 0a356263f1a749b376681fe17e08d55e7670e694 (patch) | |
tree | 5b6a712a9f96128b86be98375074b4a37ed401d4 /lib/libc | |
parent | Improve reentrancy by not using global variable. Removes two (diff) | |
download | wireguard-openbsd-0a356263f1a749b376681fe17e08d55e7670e694.tar.xz wireguard-openbsd-0a356263f1a749b376681fe17e08d55e7670e694.zip |
LSRCS should refer to the C source version of asm files 'put it in' deraadt@
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/arm/string/Makefile.inc | 4 | ||||
-rw-r--r-- | lib/libc/arch/vax/string/Makefile.inc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arch/arm/string/Makefile.inc b/lib/libc/arch/arm/string/Makefile.inc index 1e7316ecdab..3c26df61754 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.4 2007/05/17 00:53:04 maja Exp $ +# $OpenBSD: Makefile.inc,v 1.5 2007/05/17 04:32:00 drahn 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 @@ -8,5 +8,5 @@ SRCS+= bcmp.c index.c memchr.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 \ +LSRCS+= memcpy.c bcopy.c memmove.c memset.c bzero.c ffs.c strcmp.c strncmp.c \ memcmp.c diff --git a/lib/libc/arch/vax/string/Makefile.inc b/lib/libc/arch/vax/string/Makefile.inc index 35739abe7c2..a5855d654ce 100644 --- a/lib/libc/arch/vax/string/Makefile.inc +++ b/lib/libc/arch/vax/string/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.6 2007/05/15 18:42:31 otto Exp $ +# $OpenBSD: Makefile.inc,v 1.7 2007/05/17 04:32:00 drahn Exp $ SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.c memcmp.S memset.S \ rindex.c strcat.c strcmp.c strcpy.c strcspn.c strlcpy.c strlen.c \ @@ -6,5 +6,5 @@ SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.c memcmp.S memset.S \ strspn.c strstr.c swab.c SRCS+= memcpy.S memmove.S -LSRCS+= bcmp.s bcopy.c bzero.c ffs.c index.c memcmp.c memset.c memcpy.c \ +LSRCS+= bcmp.c bcopy.c bzero.c ffs.c index.c memcmp.c memset.c memcpy.c \ memmove.c |