15 lines
267 B
C
15 lines
267 B
C
#ifndef TYPES_H
|
|
#define TYPES_H
|
|
/* Types */
|
|
|
|
#define NULL ((void *)0UL)
|
|
|
|
typedef unsigned long uintptr_t;
|
|
typedef long size_t;
|
|
typedef unsigned int uint32_t;
|
|
typedef unsigned short uint16_t;
|
|
typedef unsigned char uint8_t;
|
|
typedef unsigned long long uint64_t;
|
|
|
|
#endif
|