blob: f86b0dae00ac77c0671a84f4eaa7e45c06d87390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __COMPILER_H__
#define __COMPILER_H__
typedef unsigned long uint64_t;
typedef unsigned long uintptr_t;
typedef unsigned long size_t;
typedef struct {
unsigned int value;
} atomic_t;
#endif // __COMPILER_H__
|