* db.h: *int*_t are likely to collide with native types,
authorMark Eichin <eichin@mit.edu>
Wed, 28 Jun 1995 00:36:57 +0000 (00:36 +0000)
committerMark Eichin <eichin@mit.edu>
Wed, 28 Jun 1995 00:36:57 +0000 (00:36 +0000)
and the int8_t and *int64_t are never used anyway, so push them
off to hash/configure.in AC_CHECK_TYPE calls.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6175 dc483132-0cff-0310-8789-dd5450dbe970

src/util/berk_db/include/ChangeLog [new file with mode: 0644]
src/util/berk_db/include/db.h

diff --git a/src/util/berk_db/include/ChangeLog b/src/util/berk_db/include/ChangeLog
new file mode 100644 (file)
index 0000000..178ddd6
--- /dev/null
@@ -0,0 +1,6 @@
+Tue Jun 27 20:49:50 1995  Mark Eichin  <eichin@cygnus.com>
+
+       * db.h: *int*_t are likely to collide with native types,
+       and the int8_t and *int64_t are never used anyway, so push them
+       off to hash/configure.in AC_CHECK_TYPE calls.
+
index 47044f076858cba330640c0ba3ad446465480fe2..0325b06b20b77170796d9b852e41f89fe4a231da 100644 (file)
 #define        RET_SUCCESS      0
 #define        RET_SPECIAL      1
 
-#ifndef        __BIT_TYPES_DEFINED__
-#define        __BIT_TYPES_DEFINED__
-typedef        __signed char              int8_t;
-typedef        unsigned char            u_int8_t;
-typedef        short                     int16_t;
-typedef        unsigned short          u_int16_t;
-typedef        int                       int32_t;
-typedef        unsigned int            u_int32_t;
-#ifdef WE_DONT_NEED_QUADS
-typedef        long long                 int64_t;
-typedef        unsigned long long      u_int64_t;
-#endif
-#endif
-
 #define        MAX_PAGE_NUMBER 0xffffffff      /* >= # of pages in a file */
-typedef u_int32_t      pgno_t;
+/* typedef u_int32_t   pgno_t; */
 #define        MAX_PAGE_OFFSET 65535           /* >= # of bytes in a page */
 typedef u_int16_t      indx_t;
 #define        MAX_REC_NUMBER  0xffffffff      /* >= # of records in a tree */