1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

elf/dl-exception.c: Include <_itoa.h> for _itoa prototype

Tested with build-many-glibcs.py.

	* elf/dl-exception.c: Include <_itoa.h>.
This commit is contained in:
H.J. Lu
2018-11-29 20:03:46 -08:00
parent c6a5bdc189
commit ce7387cc25
2 changed files with 5 additions and 0 deletions

View File

@ -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> 2018-11-30 Samuel Thibault <samuel.thibault@ens-lyon.org>
* sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Directly return value * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Directly return value

View File

@ -23,6 +23,7 @@
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include <_itoa.h>
/* This message we return as a last resort. We define the string in a /* 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 variable since we have to avoid freeing it and so have to enable