00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _SYS_TYPES_H
00029 #define _SYS_TYPES_H
00030
00031 #include <stddef.h>
00032
00033 #if 0
00034 #ifdef mc6811
00035 # include <asm-m68hc11/param.h>
00036 #endif
00037
00038 #ifdef mc6812
00039 # include <asm-m68hc12/param.h>
00040 #endif
00041
00042 #include <arch/param.h>
00043 #endif
00044
00045 #if __BSD_VISIBLE
00046 typedef unsigned char u_char;
00047 typedef unsigned short u_short;
00048 typedef unsigned int u_int;
00049 typedef unsigned long u_long;
00050 typedef unsigned short ushort;
00051 typedef unsigned int uint;
00052
00053 typedef char* caddr_t;
00054 #endif
00055
00056 #include <sys/stdint.h>
00057 #include <sys/_types.h>
00058
00059 typedef unsigned long long u_quad_t;
00060 typedef long long quad_t;
00061
00062 #endif