From c3d6c951998a1687ad462bdd5e9bcbb691e1db8a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 9 Apr 1998 21:07:26 +0000 Subject: Update. * stdlib/strtof_l.c: Declare ____strtoull_l_internal. * stdlib/strtod_l.c: Likewise. * stdlib/strtold_l.c: Likewise. * intl/gettextP.h [_LIBC] (SWAP): Use byteswap.h macros. --- intl/gettextP.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'intl') diff --git a/intl/gettextP.h b/intl/gettextP.h index fd2547b..bcbe272 100644 --- a/intl/gettextP.h +++ b/intl/gettextP.h @@ -41,6 +41,10 @@ #endif +#ifdef _LIBC +# include +# define SWAP(i) bswap_32 (i) +#else static nls_uint32 SWAP PARAMS ((nls_uint32 i)); static inline nls_uint32 @@ -49,6 +53,7 @@ SWAP (i) { return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24); } +#endif struct loaded_domain -- cgit v1.1