diff options
Diffstat (limited to 'sysdeps/generic/_itoa.h')
-rw-r--r-- | sysdeps/generic/_itoa.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/_itoa.h b/sysdeps/generic/_itoa.h index 8360bafe70..ed84e56ae4 100644 --- a/sysdeps/generic/_itoa.h +++ b/sysdeps/generic/_itoa.h @@ -46,12 +46,12 @@ extern char *_itoa (unsigned long long int value, char *buflim, extern const char _itoa_upper_digits[]; extern const char _itoa_lower_digits[]; -#if !defined NOT_IN_libc || IS_IN (rtld) +#if IS_IN (libc) || IS_IN (rtld) hidden_proto (_itoa_upper_digits) hidden_proto (_itoa_lower_digits) #endif -#ifndef NOT_IN_libc +#if IS_IN (libc) extern char *_itoa_word (_ITOA_WORD_TYPE value, char *buflim, unsigned int base, int upper_case); #else |