diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2018-11-29 20:03:46 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2018-11-29 20:03:46 -0800 |
commit | ce7387cc250a408d3fbb7a6fff7ad4d977166b00 (patch) | |
tree | 7cb363ae09aa9892e2174504e951a17db275e27c | |
parent | c6a5bdc18979c09c7a2a9cf23fff8ac5781962ae (diff) | |
download | glibc-ce7387cc250a408d3fbb7a6fff7ad4d977166b00.tar glibc-ce7387cc250a408d3fbb7a6fff7ad4d977166b00.tar.gz glibc-ce7387cc250a408d3fbb7a6fff7ad4d977166b00.tar.bz2 glibc-ce7387cc250a408d3fbb7a6fff7ad4d977166b00.zip |
elf/dl-exception.c: Include <_itoa.h> for _itoa prototype
Tested with build-many-glibcs.py.
* elf/dl-exception.c: Include <_itoa.h>.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | elf/dl-exception.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2018-11-29 H.J. Lu <hongjiu.lu@intel.com> + + * elf/dl-exception.c: Include <_itoa.h>. + 2018-11-30 Samuel Thibault <samuel.thibault@ens-lyon.org> * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Directly return value diff --git a/elf/dl-exception.c b/elf/dl-exception.c index 1e41d89a7d..3e8e0ba3f1 100644 --- a/elf/dl-exception.c +++ b/elf/dl-exception.c @@ -23,6 +23,7 @@ #include <stdint.h> #include <string.h> #include <unistd.h> +#include <_itoa.h> /* This message we return as a last resort. We define the string in a variable since we have to avoid freeing it and so have to enable |