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

File: [local] / funnyos / sys / types.h (download)

Revision 1.1.1.1 (vendor branch), Tue Oct 16 08:41:05 2007 UTC (16 years, 6 months ago) by init
Branch: nbrk
CVS Tags: init
Changes since 1.1: +0 -0 lines

Initial import of funnyos; still much more work to do

/*
 * $Id: types.h,v 1.1.1.1 2007/10/16 08:41:05 init Exp $
 */
#ifndef _SYS_TYPES_H
#define _SYS_TYPES_H

typedef unsigned int   	uint32_t;
typedef unsigned short 	uint16_t;
typedef unsigned char  	uint8_t;
typedef signed int   	int32_t;
typedef signed short 	int16_t;
typedef signed char  	int8_t;

/* XXX convert any imported sources to not to use these types */
typedef unsigned long 	u_long;
typedef unsigned long long u_int64_t;
typedef unsigned int 	u_int;

#define NULL (void *)0

#endif /* _SYS_TYPES_H */