summaryrefslogtreecommitdiff
path: root/kernel/types.h
blob: 4fdca6b8d764e8cc2a6fb99ce939cf7c34276303 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef TYPES_H
#define TYPES_H

typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef signed int int32_t;
typedef unsigned int uint32_t;

#endif