diff options
author | 2001-06-08 06:50:34 +0000 | |
---|---|---|
committer | 2001-06-08 06:50:34 +0000 | |
commit | ad987fc8ac3aff9ee87d30cad41a2107ed258a67 (patch) | |
tree | 2ebc5ed3d1d2ca95f024a364862c03a88ad0b8ab | |
parent | Be consistent. If we have inveted our of strlen, use it everywhere. (diff) | |
download | wireguard-openbsd-ad987fc8ac3aff9ee87d30cad41a2107ed258a67.tar.xz wireguard-openbsd-ad987fc8ac3aff9ee87d30cad41a2107ed258a67.zip |
No more need to pull in strlen from libc.
-rw-r--r-- | libexec/ld.so/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/Makefile b/libexec/ld.so/Makefile index 628c3041334..7d4c9a654e9 100644 --- a/libexec/ld.so/Makefile +++ b/libexec/ld.so/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.6 2001/05/23 14:24:03 drahn Exp $ +# $OpenBSD: Makefile,v 1.7 2001/06/08 06:50:34 art Exp $ SUBDIR=libdl ldconfig ldd VPATH=${.CURDIR}/../../lib/libc/string:${.CURDIR}/../../sys/lib/libsa NOMAN= SRCS= ldasm.S loader.c library.c resolve.c dlfcn.c dl_printf.c rtld_machine.c -SRCS+= sod.c strcmp.c strlen.c strncmp.c strsep.c strtol.c strdup.c strcpy.c +SRCS+= sod.c strcmp.c strncmp.c strsep.c strtol.c strdup.c strcpy.c OBJS+= strchr.o PROG= ld.so MAN= ld.so.8 |