summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/Makefile.inc
diff options
context:
space:
mode:
authormillert <>2004-05-03 17:21:13 +0000
committermillert <>2004-05-03 17:21:13 +0000
commitec47889776b306f56c691ad8120367908f17299e (patch)
tree9c6d4f28de6cc1195e43c8c46792240d297c5c78 /src/lib/libc/stdlib/Makefile.inc
parentc81aca6074576d87ed097daa64164db3977c2b8b (diff)
downloadopenbsd-ec47889776b306f56c691ad8120367908f17299e.tar.gz
openbsd-ec47889776b306f56c691ad8120367908f17299e.tar.bz2
openbsd-ec47889776b306f56c691ad8120367908f17299e.zip
Add _Exit(3) as per C99. Discussed with espie@ some time ago.
Diffstat (limited to 'src/lib/libc/stdlib/Makefile.inc')
-rw-r--r--src/lib/libc/stdlib/Makefile.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc
index e24eb8d4a5..80d3c22112 100644
--- a/src/lib/libc/stdlib/Makefile.inc
+++ b/src/lib/libc/stdlib/Makefile.inc
@@ -10,7 +10,7 @@ SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \
10 setenv.c strtod.c strtol.c strtoll.c strtonum.c strtoul.c strtoull.c \ 10 setenv.c strtod.c strtol.c strtoll.c strtonum.c strtoul.c strtoull.c \
11 system.c \ 11 system.c \
12 tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c lcong48.c \ 12 tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c lcong48.c \
13 lrand48.c mrand48.c nrand48.c seed48.c srand48.c qabs.c qdiv.c 13 lrand48.c mrand48.c nrand48.c seed48.c srand48.c qabs.c qdiv.c _Exit.c
14 14
15.if (${MACHINE_ARCH} == "m68k") 15.if (${MACHINE_ARCH} == "m68k")
16SRCS+= abs.S div.c labs.c ldiv.c 16SRCS+= abs.S div.c labs.c ldiv.c
@@ -45,6 +45,7 @@ MAN+= a64l.3 abort.3 abs.3 alloca.3 atexit.3 atof.3 atoi.3 atol.3 atoll.3 \
45 qdiv.3 qsort.3 radixsort.3 rand48.3 rand.3 random.3 realpath.3 \ 45 qdiv.3 qsort.3 radixsort.3 rand48.3 rand.3 random.3 realpath.3 \
46 strtod.3 strtonum.3 strtol.3 strtoul.3 system.3 tsearch.3 46 strtod.3 strtonum.3 strtol.3 strtoul.3 system.3 tsearch.3
47 47
48MLINKS+=exit.3 _Exit.3
48MLINKS+=ecvt.3 fcvt.3 ecvt.3 gcvt.3 49MLINKS+=ecvt.3 fcvt.3 ecvt.3 gcvt.3
49MLINKS+=getenv.3 setenv.3 getenv.3 unsetenv.3 getenv.3 putenv.3 50MLINKS+=getenv.3 setenv.3 getenv.3 unsetenv.3 getenv.3 putenv.3
50MLINKS+=getopt_long.3 getopt_long_only.3 51MLINKS+=getopt_long.3 getopt_long_only.3