23 lines
378 B
C
23 lines
378 B
C
/*
|
|
* types.h
|
|
*
|
|
* Created on: Nov 1, 2018
|
|
* Author: rick
|
|
*/
|
|
|
|
#ifndef KERNEL_LIBC_TYPES_H_
|
|
#define KERNEL_LIBC_TYPES_H_
|
|
|
|
# define NULL (void *)0
|
|
|
|
typedef unsigned long long u64;
|
|
typedef long long s64;
|
|
typedef unsigned int u32;
|
|
typedef int s32;
|
|
typedef unsigned short u16;
|
|
typedef short s16;
|
|
typedef unsigned char u8;
|
|
typedef char s8;
|
|
|
|
#endif /* KERNEL_LIBC_TYPES_H_ */
|