PSXSDK
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
stdint.h
Go to the documentation of this file.
1 /* stdint.h */
2 
3 #ifndef _STDINT_H
4 #define _STDINT_H
5 
6 #include <inttypes.h>
7 
8 // Added ifndef or otherwise GCC 4.8 would complain
9 
10 #ifndef __PTRDIFF_TYPE__
11 typedef unsigned int ptrdiff_t;
12 #endif
13 
14 #endif