summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/osdcomm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/osdcomm.h')
-rw-r--r--src/osd/osdcomm.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/osd/osdcomm.h b/src/osd/osdcomm.h
index 8e6ee317400..e519b597d96 100644
--- a/src/osd/osdcomm.h
+++ b/src/osd/osdcomm.h
@@ -89,21 +89,13 @@ using std::int64_t;
#define FALSE 0
#endif
-
-
/***************************************************************************
FUNDAMENTAL MACROS
***************************************************************************/
/* U64 and S64 are used to wrap long integer constants. */
-#if defined(__GNUC__) || defined(_MSC_VER)
#define U64(val) val##ULL
#define S64(val) val##LL
-#else
-#define U64(val) val
-#define S64(val) val
-#endif
-
/* Concatenate/extract 32-bit halves of 64-bit values */
constexpr uint64_t concat_64(uint32_t hi, uint32_t lo) { return (uint64_t(hi) << 32) | uint32_t(lo); }