diff options
author | Xerxes Rånby <[email protected]> | 2013-01-29 15:08:23 +0100 |
---|---|---|
committer | Xerxes Rånby <[email protected]> | 2013-01-29 15:08:23 +0100 |
commit | 03e5bba36d7826022ae5d75da96bd3a1dbe0a827 (patch) | |
tree | cd7ec7f52859fbee25299bcbd5792b1ebf2102c9 /src/native/almisc.c | |
parent | 2646b95c4b34a0b97426dfc5a9cc5d9423ac889f (diff) |
Remove system dependency of intptr_t and uint64_t.
Signed-off-by: Xerxes Rånby <[email protected]>
Diffstat (limited to 'src/native/almisc.c')
-rw-r--r-- | src/native/almisc.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/native/almisc.c b/src/native/almisc.c index c77cb0e..61ee599 100644 --- a/src/native/almisc.c +++ b/src/native/almisc.c @@ -10,15 +10,6 @@ #define __cdecl /* Trim non-standard keyword */ #endif #include "efx.h" - #ifdef _MSC_VER /* Windows, Microsoft compilers */ - /* This typedef is apparently needed for compilers before VC8 */ - #if _MSC_VER < 1400 - typedef int intptr_t; - #endif - #else - /* This header seems to be available on all other platforms */ - #include <inttypes.h> - #endif #include <string.h> |