Minor update to OpenArena, small x64 fixes to random headers

This commit is contained in:
Sergii Pylypenko
2014-10-24 21:50:08 +03:00
parent 38390d7af9
commit 064f685983
8 changed files with 56 additions and 23 deletions

View File

@@ -42,7 +42,13 @@
#define HAVE___INT64
/* Define to the size of a long int type */
#ifdef __LP64__
#define SIZEOF_LONG 8
#define SIZEOF_VOIDP 8
#else
#define SIZEOF_LONG 4
#define SIZEOF_VOIDP 4
#endif
/* Define to the size of a long long int type */
#define SIZEOF_LONG_LONG 8
@@ -51,7 +57,6 @@
#define SIZEOF_UINT 4
/* Define to the size of a void pointer type */
#define SIZEOF_VOIDP 4
/* Define if we have GCC's destructor attribute */
#define HAVE_GCC_DESTRUCTOR 1