summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-05-09 19:19:15 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-05-09 19:19:15 +0000
commit152dc9060b79fadd9adaccf594ec076d4620347e (patch)
tree7a9400420a18559790df5de0ce82cf59c65d407b /lib/libc/stdlib
parentbb7de107e4c211cdf5bb384d3de1ab92023f64ee (diff)
insque and remque are VAX instructions, no need for C functions; From 4.4BSD
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/Makefile.inc10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/libc/stdlib/Makefile.inc b/lib/libc/stdlib/Makefile.inc
index fec3357af2f..4ed97c5b660 100644
--- a/lib/libc/stdlib/Makefile.inc
+++ b/lib/libc/stdlib/Makefile.inc
@@ -5,11 +5,11 @@
SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \
calloc.c cfree.c exit.c ecvt.c gcvt.c getenv.c getopt.c getopt_long.c \
- getsubopt.c heapsort.c insque.c l64a.c lsearch.c malloc.c merge.c \
+ getsubopt.c heapsort.c l64a.c lsearch.c malloc.c merge.c \
multibyte.c putenv.c qsort.c radixsort.c rand.c random.c realpath.c \
setenv.c strtod.c strtol.c strtoll.c strtoul.c strtoull.c system.c \
tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c lcong48.c \
- lrand48.c mrand48.c nrand48.c remque.c seed48.c srand48.c qabs.c qdiv.c
+ lrand48.c mrand48.c nrand48.c seed48.c srand48.c qabs.c qdiv.c
.if (${MACHINE_ARCH} == "m68k")
SRCS+= abs.S div.c labs.c ldiv.c
@@ -32,6 +32,12 @@ SRCS+= abs.c div.c labs.c ldiv.c
SRCS+= abs.c div.c labs.c ldiv.c
.endif
+.if (${MACHINE_ARCH} == "vax")
+SRCS+= insque.S remque.S
+.else
+SRCS+= insque.c remque.c
+.endif
+
MAN+= a64l.3 abort.3 abs.3 alloca.3 atexit.3 atof.3 atoi.3 atol.3 atoll.3 \
bsearch.3 div.3 ecvt.3 exit.3 getenv.3 getopt.3 getopt_long.3 \
getsubopt.3 insque.3 labs.3 ldiv.3 lsearch.3 malloc.3 memory.3 qabs.3 \