ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
(Generate patch)

Comparing gvpe/configure.ac (file contents):
Revision 1.32 by pcg, Sat Jun 19 14:16:55 2004 UTC vs.
Revision 1.33 by pcg, Tue Mar 1 06:27:20 2005 UTC

17#endif 17#endif
18 18
19]) 19])
20 20
21AH_BOTTOM([ 21AH_BOTTOM([
22typedef unsigned char u8;
23typedef signed char s8;
24
22#if __CYGWIN__ 25#if __CYGWIN__
23 26
24typedef unsigned char u8;
25typedef unsigned short u16; 27typedef unsigned short u16;
26typedef unsigned int u32; 28typedef unsigned int u32;
29typedef signed short s16;
30typedef signed int s32;
27 31
28#else 32#else
29#include <inttypes.h> 33#include <inttypes.h>
30 34
31/* old modula-2 habits */ 35/* old modula-2 habits */
32typedef unsigned char u8;
33typedef uint16_t u16; 36typedef uint16_t u16;
34typedef uint32_t u32; 37typedef uint32_t u32;
38typedef int16_t s16;
39typedef int32_t s32;
35#endif 40#endif
36 41
37#endif 42#endif
38]) 43])
39 44

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines