15 lines
224 B
C
15 lines
224 B
C
#ifndef MANGO_TYPES_H_
|
|
#define MANGO_TYPES_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define CYCLES_MAX UINT64_MAX
|
|
|
|
typedef uintptr_t phys_addr_t;
|
|
typedef uint64_t cycles_t;
|
|
typedef uint64_t sectors_t;
|
|
|
|
typedef unsigned int umode_t;
|
|
|
|
#endif
|