blob: e6bb9d28c9282001336003080682b2e6ee16e230 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* stdint.h */
#ifndef _STDINT_H
#define _STDINT_H
#include <inttypes.h>
// Added ifndef or otherwise GCC 4.8 would complain
#ifndef __PTRDIFF_TYPE__
typedef unsigned int ptrdiff_t;
#endif
#endif
|