diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-09-07 08:30:56 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-09-07 08:30:56 +0000 |
commit | 4bbfdf97af8375b6a3ed09ebe03484c7399bf2d0 (patch) | |
tree | b5870ed2ee2c60b76af938732ba54a42098b5d0f /libc/stdlib/Makefile | |
parent | b54df7ec544e86c33e534a67bb9e38250467df4e (diff) |
Add missing imaxdiv and lldiv needed for SuSv3. Adjust ldiv to
match glibc's quotient truncation behavior.
Diffstat (limited to 'libc/stdlib/Makefile')
-rw-r--r-- | libc/stdlib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile index 878d2bd03..02dd8887e 100644 --- a/libc/stdlib/Makefile +++ b/libc/stdlib/Makefile @@ -82,8 +82,8 @@ MSRC2 = atexit.c MOBJ2 = atexit.o on_exit.o __exit_handler.o exit.o CSRC = abort.c getenv.c mkdtemp.c mktemp.c realpath.c mkstemp.c mkstemp64.c \ - rand.c random.c random_r.c setenv.c system.c div.c ldiv.c getpt.c \ - ptsname.c grantpt.c unlockpt.c gcvt.c drand48-iter.c jrand48.c \ + rand.c random.c random_r.c setenv.c system.c div.c ldiv.c lldiv.c \ + getpt.c ptsname.c grantpt.c unlockpt.c gcvt.c drand48-iter.c jrand48.c \ jrand48_r.c lrand48.c lrand48_r.c mrand48.c mrand48_r.c nrand48.c \ nrand48_r.c rand_r.c srand48.c srand48_r.c seed48.c seed48_r.c \ valloc.c |