Mercurial > dillo_port1.3
view d_size.h @ 2042:8f021c978252
fix excessive redraws on pages with bugs
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> |
---|---|
date | Sat, 21 May 2011 00:02:26 +0200 |
parents | 9e14c9633f18 |
children |
line wrap: on
line source
#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__ */