Linux has inttypes.h too, and Posix says uint32_t and family should be

defined there, so removing the special 'stdint.h' case for Linux.


git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1361 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2004-04-23 16:57:59 +00:00
parent 45d991a62f
commit 58a44d3389
-2
View File
@@ -28,8 +28,6 @@
# else
typedef int intptr_t;
# endif
#elif defined (__linux__)
# include <stdint.h>
#else
# include <inttypes.h>
#endif