chiark / gitweb /
Import release 0.03
[secnet.git] / config.h.bot
1 /* -*- c -*- */
2
3 /* These are from config.h.bot, pasted onto the end of config.h.in. */
4
5 #ifdef HAVE_SYS_CDEFS_H
6 #include <sys/cdefs.h>
7 #endif
8
9 #if 0
10 /* Use the definitions: */
11
12 /* Give us an unsigned 32-bit data type. */
13 #if SIZEOF_UNSIGNED_LONG==4
14 #define UWORD32 unsigned long
15 #elif SIZEOF_UNSIGNED_INT==4
16 #define UWORD32 unsigned int
17 #else
18 #error I do not know what to use for a UWORD32.
19 #endif
20
21 /* An unsigned 8-bit data type */
22 #if SIZEOF_UNSIGNED_CHAR==1
23 #define UBYTE8 unsigned char
24 #else
25 #error I do not know what to use for a UBYTE8
26 #endif
27
28
29 #endif /* 0 */
30
31
32 #endif /* _CONFIG_H */