Hello world!
This commit is contained in:
15
kernel/types.h
Normal file
15
kernel/types.h
Normal file
@ -0,0 +1,15 @@
|
||||
#ifndef TYPES_H_
|
||||
#define TYPES_H_
|
||||
|
||||
#define NULL ((void *)0)
|
||||
|
||||
typedef char int8;
|
||||
typedef unsigned char uint8;
|
||||
typedef short int16;
|
||||
typedef unsigned short uint16;
|
||||
typedef int int32;
|
||||
typedef unsigned int uint32;
|
||||
typedef long long int64;
|
||||
typedef unsigned long long uint64;
|
||||
|
||||
#endif // TYPES_H_
|
Reference in New Issue
Block a user