You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
371 B
17 lines
371 B
#ifndef __LINUX_TYPES_H_
|
|
|
|
#define __LINUX_TYPES_H_
|
|
|
|
typedef unsigned char u8;
|
|
typedef unsigned short u16;
|
|
typedef unsigned int u32;
|
|
|
|
typedef signed char s8;
|
|
typedef signed short s16;
|
|
typedef signed long s32;
|
|
|
|
typedef signed int sint;
|
|
|
|
typedef signed long slong;
|
|
|
|
#endif /* __LINUX_TYPES_H_ */
|
|
|