* 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 9f44e4a..3f244b7 100644 (file)
@@ -1,5 +1,9 @@
 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.
        * Makefile.am (c_source_files): Added sf_fabs.c.
        * java/lang/sf_fabs.c: New file.
index 2aaed32..34f88af 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;