make run: Use -vga std
[snowy-minesweeper.git] / include / stdint.h
blob4040b1777dc7d012d77e18d3f532a27ec84ca159
1 #ifndef STDINT_H
2 #define STDINT_H
4 typedef unsigned long long uint64_t;
5 typedef unsigned int uint32_t;
6 typedef unsigned short uint16_t;
7 typedef unsigned char uint8_t;
9 typedef signed long long int64_t;
10 typedef signed int int32_t;
11 typedef signed short int16_t;
12 typedef signed char int8_t;
14 typedef uint32_t uintptr_t;
15 typedef int32_t intptr_t;
17 typedef int32_t ptrdiff_t;
19 #endif