* java/lang/sf_fabs.c: Use uint32_t, not __uint32_t.

From-SVN: r39269
This commit is contained in:
Tom Tromey 2001-01-25 19:07:18 +00:00 committed by Tom Tromey
parent 22892fc60d
commit f07f528411
2 changed files with 5 additions and 1 deletions

View 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.

View 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;