summaryrefslogtreecommitdiff
path: root/include/inttypes.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-01-08 18:52:00 +0000
committerEric Andersen <andersen@codepoet.org>2003-01-08 18:52:00 +0000
commit7f70a7f59755bedeb8f0ade17815486b8aa1afc0 (patch)
treed93478c3a3e51c9485734dba1be03955993357ce /include/inttypes.h
parent3afa00c842c4923d7d6f51fd4a81f48304ee1e7b (diff)
Disable the __USE_EXTERN_INLINES versions of these headers, which
use non-existant glibc internals.
Diffstat (limited to 'include/inttypes.h')
-rw-r--r--include/inttypes.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/inttypes.h b/include/inttypes.h
index b81e73179..18592e978 100644
--- a/include/inttypes.h
+++ b/include/inttypes.h
@@ -323,6 +323,7 @@ extern uintmax_t wcstoumax (__const __gwchar_t *__restrict __nptr,
__THROW;
#endif
+#if 0 /* disabled for uClibc */
#ifdef __USE_EXTERN_INLINES
# if __WORDSIZE == 64
@@ -356,7 +357,6 @@ strtoumax (__const char *__restrict nptr, char **__restrict endptr,
return __strtoul_internal (nptr, endptr, base, 0);
}
-#if 0
/* Like `wcstol' but convert to `intmax_t'. */
# ifndef __wcstol_internal_defined
extern long int __wcstol_internal (__const __gwchar_t * __restrict __nptr,
@@ -387,7 +387,6 @@ wcstoumax (__const __gwchar_t *__restrict nptr, __gwchar_t **__restrict endptr,
{
return __wcstoul_internal (nptr, endptr, base, 0);
}
-#endif
# else /* __WORDSIZE == 32 */
@@ -424,7 +423,6 @@ strtoumax (__const char *__restrict nptr, char **__restrict endptr,
return __strtoull_internal (nptr, endptr, base, 0);
}
-#if 0
/* Like `wcstol' but convert to `intmax_t'. */
# ifndef __wcstoll_internal_defined
__extension__
@@ -459,9 +457,10 @@ wcstoumax (__const __gwchar_t *__restrict nptr, __gwchar_t **__restrict endptr,
{
return __wcstoull_internal (nptr, endptr, base, 0);
}
-#endif
# endif /* __WORDSIZE == 32 */
#endif /* Use extern inlines. */
+#endif /* disabled for uClibc */
+
__END_DECLS