toaruos/kernel/include/types.h

15 lines
267 B
C
Raw Normal View History

2011-02-22 04:09:57 +03:00
#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