mirror of
https://github.com/86Box/86Box.git
synced 2026-02-22 01:25:33 -07:00
15 lines
690 B
C
15 lines
690 B
C
#ifndef EMU_SF_CONFIG_H
|
|
#define EMU_SF_CONFIG_H
|
|
|
|
/*----------------------------------------------------------------------------
|
|
| The `LIT64' macro takes as its argument a textual integer literal and
|
|
| if necessary ``marks'' the literal as having a 64-bit integer type.
|
|
| For example, the GNU C Compiler (`gcc') requires that 64-bit literals be
|
|
| appended with the letters `LL' standing for `long long', which is `gcc's
|
|
| name for the 64-bit integer type. Some compilers may allow `LIT64' to be
|
|
| defined as the identity macro: `#define LIT64( a ) a'.
|
|
*----------------------------------------------------------------------------*/
|
|
#define BX_CONST64(a) a##LL
|
|
|
|
#endif /*EMU_SF_CONFIG_H*/
|