summaryrefslogtreecommitdiffstats
path: root/kernel/types.h
blob: 5065af7de525bf6a99a8168e52290a013a592fe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _TYPES_H_
#define _TYPES_H_

#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>

typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;

/* #define NULL 0 */

#endif