12
12
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
13
13
* Portions Copyright (c) 1994, Regents of the University of California
14
14
*
15
- * $PostgreSQL: pgsql/src/include/c.h,v 1.158 2003/12/20 17:31:21 momjian Exp $
15
+ * $PostgreSQL: pgsql/src/include/c.h,v 1.159 2004/01/10 23:39:51 neilc Exp $
16
16
*
17
17
*-------------------------------------------------------------------------
18
18
*/
@@ -234,14 +234,6 @@ typedef unsigned short uint16; /* == 16 bits */
234
234
typedef unsigned int uint32 ; /* == 32 bits */
235
235
#endif /* not HAVE_UINT8 */
236
236
237
- /*
238
- * boolN
239
- * Boolean value, AT LEAST N BITS IN SIZE.
240
- */
241
- typedef uint8 bool8 ; /* >= 8 bits */
242
- typedef uint16 bool16 ; /* >= 16 bits */
243
- typedef uint32 bool32 ; /* >= 32 bits */
244
-
245
237
/*
246
238
* bitsN
247
239
* Unit of bitwise operation, AT LEAST N BITS IN SIZE.
@@ -250,15 +242,6 @@ typedef uint8 bits8; /* >= 8 bits */
250
242
typedef uint16 bits16 ; /* >= 16 bits */
251
243
typedef uint32 bits32 ; /* >= 32 bits */
252
244
253
- /*
254
- * wordN
255
- * Unit of storage, AT LEAST N BITS IN SIZE,
256
- * used to fetch/store data.
257
- */
258
- typedef uint8 word8 ; /* >= 8 bits */
259
- typedef uint16 word16 ; /* >= 16 bits */
260
- typedef uint32 word32 ; /* >= 32 bits */
261
-
262
245
/*
263
246
* floatN
264
247
* Floating point number, AT LEAST N BITS IN SIZE,
@@ -298,8 +281,7 @@ typedef long long int int64;
298
281
typedef unsigned long long int uint64 ;
299
282
#endif
300
283
301
- #else /* not HAVE_LONG_INT_64 and not
302
- * HAVE_LONG_LONG_INT_64 */
284
+ #else /* not HAVE_LONG_INT_64 and not HAVE_LONG_LONG_INT_64 */
303
285
304
286
/* Won't actually work, but fall back to long int so that code compiles */
305
287
#ifndef HAVE_INT64
@@ -310,8 +292,7 @@ typedef unsigned long int uint64;
310
292
#endif
311
293
312
294
#define INT64_IS_BUSTED
313
- #endif /* not HAVE_LONG_INT_64 and not
314
- * HAVE_LONG_LONG_INT_64 */
295
+ #endif /* not HAVE_LONG_INT_64 and not HAVE_LONG_LONG_INT_64 */
315
296
316
297
/* Decide if we need to decorate 64-bit constants */
317
298
#ifdef HAVE_LL_CONSTANTS
0 commit comments