summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/softfloat/mamesf.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/softfloat/mamesf.h')
-rw-r--r--3rdparty/softfloat/mamesf.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/3rdparty/softfloat/mamesf.h b/3rdparty/softfloat/mamesf.h
index c66931698a3..437f54834e3 100644
--- a/3rdparty/softfloat/mamesf.h
+++ b/3rdparty/softfloat/mamesf.h
@@ -24,15 +24,15 @@
#include "assert.h"
#include "osdcomm.h"
-typedef INT8 flag;
-typedef UINT8 uint8;
-typedef INT8 int8;
-typedef UINT16 uint16;
-typedef INT16 int16;
-typedef UINT32 uint32;
-typedef INT32 int32;
-typedef UINT64 uint64;
-typedef INT64 int64;
+typedef int8_t flag;
+typedef uint8_t uint8;
+typedef int8_t int8;
+typedef uint16_t uint16;
+typedef int16_t int16;
+typedef uint32_t uint32;
+typedef int32_t int32;
+typedef uint64_t uint64;
+typedef int64_t int64;
/*----------------------------------------------------------------------------
| Each of the following `typedef's defines a type that holds integers
@@ -40,14 +40,14 @@ typedef INT64 int64;
| implementation of C, `bits16' and `sbits16' should be `typedef'ed to
| `unsigned short int' and `signed short int' (or `short int'), respectively.
*----------------------------------------------------------------------------*/
-typedef UINT8 bits8;
-typedef INT8 sbits8;
-typedef UINT16 bits16;
-typedef INT16 sbits16;
-typedef UINT32 bits32;
-typedef INT32 sbits32;
-typedef UINT64 bits64;
-typedef INT64 sbits64;
+typedef uint8_t bits8;
+typedef int8_t sbits8;
+typedef uint16_t bits16;
+typedef int16_t sbits16;
+typedef uint32_t bits32;
+typedef int32_t sbits32;
+typedef uint64_t bits64;
+typedef int64_t sbits64;
/*----------------------------------------------------------------------------
| The `LIT64' macro takes as its argument a textual integer literal and