summaryrefslogtreecommitdiff
path: root/lib/libc/string
diff options
context:
space:
mode:
authorperry <perry@NetBSD.org>2005-03-14 03:13:53 +0000
committerperry <perry@NetBSD.org>2005-03-14 03:13:53 +0000
commit1968911436428633dd7cdc4b0f829addf2fd00d9 (patch)
tree7c1c25acb84c994ed38cee8f79912bb7bc2f0e5f /lib/libc/string
parent2145d5199e3ebf7b69458a7de1ad91ac57b32450 (diff)
Fix stupid typo. I added memmem, not memmove.
Diffstat (limited to 'lib/libc/string')
-rw-r--r--lib/libc/string/Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/Makefile.inc b/lib/libc/string/Makefile.inc
index 3fe415dbf29..51b64dc3df5 100644
--- a/lib/libc/string/Makefile.inc
+++ b/lib/libc/string/Makefile.inc
@@ -1,5 +1,5 @@
# from: @(#)Makefile.inc 8.1 (Berkeley) 6/4/93
-# $NetBSD: Makefile.inc,v 1.55 2005/03/13 15:15:13 perry Exp $
+# $NetBSD: Makefile.inc,v 1.56 2005/03/14 03:13:53 perry Exp $
# string sources
.PATH: ${ARCHDIR}/string ${.CURDIR}/string
@@ -39,7 +39,7 @@ SRCS+= memccpy.c
SRCS+= memcpy.c
.endif
.if empty(SRCS:Mmemmem.S)
-SRCS+= memmove.c
+SRCS+= memmem.c
.endif
.if empty(SRCS:Mmemmove.S)
SRCS+= memmove.c