1 #ifndef __my_int
2 #define __my_int
3 
4 #include <stdint.h>
5 
6 #ifdef __cplusplus
7 extern "C"
8 {
9 #endif
10 
11 typedef int_fast32_t myint;
12 }
13 
14 #endif
15