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/amd64 | |
parent | 70f435790155c037fabac05bcd2768ab932c04f0 (diff) |
fix some lint 'xxx used, but not defined' warnings by properly adding
stuff to LSRCS
Diffstat (limited to 'lib/libc/arch/amd64')
-rw-r--r-- | lib/libc/arch/amd64/string/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/arch/amd64/string/Makefile.inc b/lib/libc/arch/amd64/string/Makefile.inc index 002194e1d8c..a384f0f20ae 100644 --- a/lib/libc/arch/amd64/string/Makefile.inc +++ b/lib/libc/arch/amd64/string/Makefile.inc @@ -1,6 +1,8 @@ -# $OpenBSD: Makefile.inc,v 1.1 2004/01/28 01:44:45 mickey Exp $ +# $OpenBSD: Makefile.inc,v 1.2 2007/05/15 18:42:31 otto Exp $ SRCS+= bcmp.c ffs.S index.c memchr.c memcmp.c bcopy.c bzero.c \ rindex.c strcat.c strcmp.c strcpy.c strcspn.c strlen.S \ strncat.c strncmp.c strncpy.c strpbrk.c strsep.c \ strspn.c strstr.c swab.c memset.c strlcpy.c strlcat.c + +LSRCS+= ffs.c strlen.c |