[uClibc-cvs] uClibc/libm fp_private.h,1.2,1.3
Erik Andersen
andersen at uclibc.org
Mon Sep 8 11:13:01 UTC 2003
Update of /var/cvs/uClibc/libm
In directory winder:/tmp/cvs-serv31814/libm
Modified Files:
fp_private.h
Log Message:
Fixup build problem on powerpc
Index: fp_private.h
===================================================================
RCS file: /var/cvs/uClibc/libm/fp_private.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- fp_private.h 1 Sep 2003 15:00:54 -0000 1.2
+++ fp_private.h 8 Sep 2003 11:12:57 -0000 1.3
@@ -69,14 +69,16 @@
* Types used in the auxiliary functions. *
*******************************************************************************/
+#include <stdint.h>
+
typedef struct /* Hex representation of a double. */
{
#if defined(__BIG_ENDIAN__)
- u_int32_t high;
- u_int32_t low;
+ uint32_t high;
+ uint32_t low;
#else
- u_int32_t low;
- u_int32_t high;
+ uint32_t low;
+ uint32_t high;
#endif
} dHexParts;
More information about the uClibc-cvs
mailing list