mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-21 00:07:36 +08:00
Hide itoa, utoa, __itoa and __utoa in stdlib.h on Cygwin only
These functions are non-standard and not exported by Cygwin. Signed-off-by: Christian Franke <christian.franke@t-online.de>
This commit is contained in:
parent
6252fd0265
commit
31f7cd1e43
@ -221,11 +221,13 @@ char * ecvtbuf (double, int, int*, int*, char *);
|
||||
char * fcvtbuf (double, int, int*, int*, char *);
|
||||
char * ecvtf (float,int,int *,int *);
|
||||
#endif
|
||||
#ifndef __CYGWIN__
|
||||
char * __itoa (int, char *, int);
|
||||
char * __utoa (unsigned, char *, int);
|
||||
#if __MISC_VISIBLE
|
||||
# if __MISC_VISIBLE
|
||||
char * itoa (int, char *, int);
|
||||
char * utoa (unsigned, char *, int);
|
||||
# endif
|
||||
#endif
|
||||
#if __POSIX_VISIBLE
|
||||
int rand_r (unsigned *__seed);
|
||||
|
Loading…
x
Reference in New Issue
Block a user