* java/lang/sf_fabs.c: Use uint32_t, not __uint32_t.
authorTom Tromey <tromey@redhat.com>
Thu, 25 Jan 2001 19:07:18 +0000 (19:07 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Thu, 25 Jan 2001 19:07:18 +0000 (19:07 +0000)
From-SVN: r39269

libjava/ChangeLog
libjava/java/lang/sf_fabs.c

index 9f44e4aaad875480c6693b91b8308c32e0777253..3f244b7b46210d360eae5f3ed80af90393865daf 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-24  Tom Tromey  <tromey@redhat.com>
+
+       * java/lang/sf_fabs.c: Use uint32_t, not __uint32_t.
+
 2001-01-24  Tom Tromey  <tromey@redhat.com>
 
        * Makefile.in: Rebuilt.
index 2aaed326ab95b6ed895127516e0ac8467df5ee08..34f88afc4e6722a5e3113030857e497c4579a2d5 100644 (file)
@@ -26,7 +26,7 @@
        float x;
 #endif
 {
-       __uint32_t ix;
+       uint32_t ix;
        GET_FLOAT_WORD(ix,x);
        SET_FLOAT_WORD(x,ix&0x7fffffff);
         return x;