diff options
author | 2008-03-02 00:35:58 +0000 | |
---|---|---|
committer | 2008-03-02 00:35:58 +0000 | |
commit | 7df031fb4f301ee55a3ca1ad4459a5588bcfd0fa (patch) | |
tree | 9d9aaa4bb791689aa376517c7418a2551a491915 /src/emu/mamecore.h | |
parent | 492612b6c9046677abeaf7938619b8f8c4158ee9 (diff) |
Rewrote some potentially compiler specific code:
* added ATTR_FORCE_INLINE to osdcomm.h
* added ATTR_NONNULL
* moved U64 S64 fram mamecore.h to osdcomm.h
* define SETJMP_GNUC_PROTECT() in osdcomm.h for use in ppc602, ppc603
Diffstat (limited to 'src/emu/mamecore.h')
-rw-r--r-- | src/emu/mamecore.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/emu/mamecore.h b/src/emu/mamecore.h index 304bb2e8f96..ebee1a49d16 100644 --- a/src/emu/mamecore.h +++ b/src/emu/mamecore.h @@ -180,15 +180,6 @@ typedef union #define DEGREE_TO_RADIAN(x) ((M_PI / 180.0) * (x)) -/* U64 and S64 are used to wrap long integer constants. */ -#ifdef __GNUC__ -#define U64(val) val##ULL -#define S64(val) val##LL -#else -#define U64(val) val -#define S64(val) val -#endif - /* Useful macros to deal with bit shuffling encryptions */ #define BIT(x,n) (((x)>>(n))&1) |