diff options
Diffstat (limited to 'src/lib/libc/stdlib/Makefile.inc')
-rw-r--r-- | src/lib/libc/stdlib/Makefile.inc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc index 4b4c88b9af..68a8aa6437 100644 --- a/src/lib/libc/stdlib/Makefile.inc +++ b/src/lib/libc/stdlib/Makefile.inc | |||
@@ -3,11 +3,11 @@ | |||
3 | # stdlib sources | 3 | # stdlib sources |
4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/stdlib ${LIBCSRCDIR}/stdlib | 4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/stdlib ${LIBCSRCDIR}/stdlib |
5 | 5 | ||
6 | SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c bsearch.c calloc.c \ | 6 | SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \ |
7 | cfree.c exit.c getenv.c getopt.c getsubopt.c heapsort.c l64a.c \ | 7 | calloc.c cfree.c exit.c getenv.c getopt.c getsubopt.c heapsort.c \ |
8 | malloc.c merge.c multibyte.c putenv.c qsort.c radixsort.c rand.c \ | 8 | l64a.c malloc.c merge.c multibyte.c putenv.c qsort.c radixsort.c \ |
9 | random.c realpath.c setenv.c strtod.c strtol.c strtoll.c strtoul.c \ | 9 | rand.c random.c realpath.c setenv.c strtod.c strtol.c strtoll.c \ |
10 | strtoull.c system.c tfind.c tsearch.c \ | 10 | strtoul.c strtoull.c system.c tfind.c tsearch.c \ |
11 | _rand48.c drand48.c erand48.c jrand48.c lcong48.c lrand48.c \ | 11 | _rand48.c drand48.c erand48.c jrand48.c lcong48.c lrand48.c \ |
12 | mrand48.c nrand48.c seed48.c srand48.c qabs.c qdiv.c | 12 | mrand48.c nrand48.c seed48.c srand48.c qabs.c qdiv.c |
13 | 13 | ||
@@ -32,8 +32,8 @@ SRCS+= abs.c div.c labs.c ldiv.c | |||
32 | SRCS+= abs.c div.c labs.c ldiv.c | 32 | SRCS+= abs.c div.c labs.c ldiv.c |
33 | .endif | 33 | .endif |
34 | 34 | ||
35 | MAN+= a64l.3 abort.3 abs.3 alloca.3 atexit.3 atof.3 atoi.3 atol.3 bsearch.3 \ | 35 | MAN+= a64l.3 abort.3 abs.3 alloca.3 atexit.3 atof.3 atoi.3 atol.3 atoll.3 \ |
36 | div.3 exit.3 getenv.3 getopt.3 getsubopt.3 labs.3 ldiv.3 \ | 36 | bsearch.3 div.3 exit.3 getenv.3 getopt.3 getsubopt.3 labs.3 ldiv.3 \ |
37 | malloc.3 memory.3 qabs.3 qdiv.3 qsort.3 radixsort.3 rand48.3 rand.3 \ | 37 | malloc.3 memory.3 qabs.3 qdiv.3 qsort.3 radixsort.3 rand48.3 rand.3 \ |
38 | random.3 realpath.3 strtod.3 strtol.3 strtoul.3 system.3 tsearch.3 | 38 | random.3 realpath.3 strtod.3 strtol.3 strtoul.3 system.3 tsearch.3 |
39 | 39 | ||