diff options
author | Greg McGary <greg@mcgary.org> | 2000-07-18 00:13:34 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 2000-07-18 00:13:34 +0000 |
commit | 7884bf473e94661b2f1fe4250e8b6987e5965245 (patch) | |
tree | d4dfb4adacc99a35c33dac69b03f8ea4c11f1c18 /iconv/gconv_trans.c | |
parent | abf7063390f46bd484d00c6a2d103a52cf058bd6 (diff) | |
download | glibc-7884bf473e94661b2f1fe4250e8b6987e5965245.tar glibc-7884bf473e94661b2f1fe4250e8b6987e5965245.tar.gz glibc-7884bf473e94661b2f1fe4250e8b6987e5965245.tar.bz2 glibc-7884bf473e94661b2f1fe4250e8b6987e5965245.zip |
* elf/dl-runtime.c (fixup): Trampoline passes unbounded pointer.
(profile_fixup): Don't define for __BOUNDED_POINTERS__.
* sysdeps/i386/dl-machine.h: Don't use regparm attribute for
__BOUNDED_POINTERS__.
(ELF_MACHINE_RUNTIME_TRAMPOLINE): Use non-regparm version
for __BOUNDED_POINTERS__.
* iconv/gconv_trans.c: Add #include <stdlib.h> to get malloc decl.
* elf/dl-runtime.c (fixup): Trampoline passes unbounded pointer.
(profile_fixup): Don't define for __BOUNDED_POINTERS__.
* sysdeps/i386/dl-machine.h: Don't use regparm attribute for
__BOUNDED_POINTERS__.
(ELF_MACHINE_RUNTIME_TRAMPOLINE): Use non-regparm version
for __BOUNDED_POINTERS__.
Diffstat (limited to 'iconv/gconv_trans.c')
-rw-r--r-- | iconv/gconv_trans.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/iconv/gconv_trans.c b/iconv/gconv_trans.c index 4fcb23209a..db7c567f1c 100644 --- a/iconv/gconv_trans.c +++ b/iconv/gconv_trans.c @@ -23,6 +23,7 @@ #include <search.h> #include <stdint.h> #include <string.h> +#include <stdlib.h> #include <bits/libc-lock.h> #include "gconv_int.h" |