Commit f07f5284 by Tom Tromey Committed by Tom Tromey

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

From-SVN: r39269
parent 22892fc6
2001-01-24 Tom Tromey <tromey@redhat.com> 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.in: Rebuilt.
* Makefile.am (c_source_files): Added sf_fabs.c. * Makefile.am (c_source_files): Added sf_fabs.c.
* java/lang/sf_fabs.c: New file. * java/lang/sf_fabs.c: New file.
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
float x; float x;
#endif #endif
{ {
__uint32_t ix; uint32_t ix;
GET_FLOAT_WORD(ix,x); GET_FLOAT_WORD(ix,x);
SET_FLOAT_WORD(x,ix&0x7fffffff); SET_FLOAT_WORD(x,ix&0x7fffffff);
return x; return x;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment