[BACK]Return to types.h CVS log [TXT][DIR] Up to [local] / funnyos / sys

Annotation of funnyos/sys/types.h, Revision 1.1.1.1

1.1       init        1: /*
                      2:  * $Id: types.h,v 1.1.1.1 2007/10/12 08:40:38 init Exp $
                      3:  */
                      4: #ifndef _SYS_TYPES_H
                      5: #define _SYS_TYPES_H
                      6:
                      7: typedef unsigned int           uint32_t;
                      8: typedef unsigned short         uint16_t;
                      9: typedef unsigned char          uint8_t;
                     10: typedef signed int     int32_t;
                     11: typedef signed short   int16_t;
                     12: typedef signed char    int8_t;
                     13:
                     14: /* XXX convert any imported sources to not to use these types */
                     15: typedef unsigned long  u_long;
                     16: typedef unsigned long long u_int64_t;
                     17: typedef unsigned int   u_int;
                     18:
                     19: #define NULL (void *)0
                     20:
                     21: #endif /* _SYS_TYPES_H */
                     22:

CVSweb