*** PORT/db/include/db.h.orig	Tue Jun 21 15:59:12 1994
--- PORT/db/include/db.h	Sat Jul 23 19:30:26 1994
***************
*** 104,118 ****
   * is so that the access methods can skip copying the key/data pair when
   * the DB_LOCK flag isn't set.
   */
- #if UINT_MAX > 65535
  #define	DB_LOCK		0x20000000	/* Do locking. */
  #define	DB_SHMEM	0x40000000	/* Use shared memory. */
  #define	DB_TXN		0x80000000	/* Do transactions. */
- #else
- #define	DB_LOCK		    0x2000	/* Do locking. */
- #define	DB_SHMEM	    0x4000	/* Use shared memory. */
- #define	DB_TXN		    0x8000	/* Do transactions. */
- #endif
  
  /* Access method description structure. */
  typedef struct __db {
--- 104,112 ----
