Fixed: __PRI64_PREFIX not defined under NetBSD
This commit is contained in:
parent
bde0c66e79
commit
024f41d69a
1 changed files with 9 additions and 11 deletions
|
@ -287,19 +287,17 @@ typedef unsigned int uint; // at least 32bits (depend of processor)
|
|||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
|
||||
#ifdef NL_OS_MAC
|
||||
#define NL_I64 __PRI_64_LENGTH_MODIFIER__
|
||||
#if defined(__PRI_64_LENGTH_MODIFIER__)
|
||||
# define NL_I64 __PRI_64_LENGTH_MODIFIER__
|
||||
#elif defined(__PRI64_PREFIX)
|
||||
# define NL_I64 __PRI64_PREFIX
|
||||
#else
|
||||
#define NL_I64 __PRI64_PREFIX
|
||||
#endif
|
||||
|
||||
/*
|
||||
#ifdef _LP64
|
||||
# ifdef _LP64
|
||||
# define NL_I64 "l"
|
||||
#else
|
||||
# else
|
||||
# define NL_I64 "ll"
|
||||
#endif // _LP64
|
||||
*/
|
||||
# endif // _LP64
|
||||
#endif
|
||||
|
||||
#endif // NL_OS_UNIX
|
||||
|
||||
|
|
Loading…
Reference in a new issue