Mercurial > dillo_port1.3
diff d_size.h @ 1915:9e14c9633f18
configure.in: define the {int,uint}*_t types with AC_TYPE_*.
* * *
drop d_size
author | Jeremy Henty <onepoint@starurchin.org> |
---|---|
date | Sat, 08 Jan 2011 17:56:56 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/d_size.h Sat Jan 08 17:56:56 2011 +0000 @@ -0,0 +1,24 @@ +#ifndef __D_SIZE_H__ +#define __D_SIZE_H__ + + +#include "config.h" + +#ifdef HAVE_STDINT_H +#include <stdint.h> +#else +#ifdef HAVE_INTTYPES_H +#include <inttypes.h> +#else +/* config.h defines {int,uint}*_t */ +#endif /* HAVE_INTTYPES_H */ +#endif /*HAVE_STDINT_H */ + +typedef unsigned char uchar_t; +typedef unsigned short ushort_t; +typedef unsigned long ulong_t; +typedef unsigned int uint_t; +typedef unsigned char bool_t; + + +#endif /* __D_SIZE_H__ */