summaryrefslogtreecommitdiff
path: root/src/include/c.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/c.h')
-rw-r--r--src/include/c.h24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/include/c.h b/src/include/c.h
index e6ec2c65597..549f3481a68 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: c.h,v 1.28 1998/01/24 22:47:43 momjian Exp $
+ * $Id: c.h,v 1.29 1998/01/26 01:41:49 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -204,21 +204,23 @@ typedef char *Pointer;
/*
* intN --
- * Signed integer, AT LEAST N BITS IN SIZE,
- * used for numerical computations.
+ * Signed integer, EXACTLY N BITS IN SIZE,
+ * used for numerical computations and the
+ * frontend/backend protocol.
*/
-typedef signed char int8; /* >= 8 bits */
-typedef signed short int16; /* >= 16 bits */
-typedef signed int int32; /* >= 32 bits */
+typedef signed char int8; /* == 8 bits */
+typedef signed short int16; /* == 16 bits */
+typedef signed int int32; /* == 32 bits */
/*
* uintN --
- * Unsigned integer, AT LEAST N BITS IN SIZE,
- * used for numerical computations.
+ * Unsigned integer, EXACTLY N BITS IN SIZE,
+ * used for numerical computations and the
+ * frontend/backend protocol.
*/
-typedef unsigned char uint8; /* >= 8 bits */
-typedef unsigned short uint16; /* >= 16 bits */
-typedef unsigned int uint32; /* >= 32 bits */
+typedef unsigned char uint8; /* == 8 bits */
+typedef unsigned short uint16; /* == 16 bits */
+typedef unsigned int uint32; /* == 32 bits */
/*
* floatN --