* kdb_dbm.c: Do not provide prototypes for dbm_error or
authorEzra Peisach <epeisach@mit.edu>
Sat, 18 May 1996 19:08:50 +0000 (19:08 +0000)
committerEzra Peisach <epeisach@mit.edu>
Sat, 18 May 1996 19:08:50 +0000 (19:08 +0000)
              dbm_clearerr if they are really macros.

Required for Ultrix...

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

src/lib/kdb/ChangeLog
src/lib/kdb/kdb_dbm.c

index 2ad7a3928d30925a9e26738a10af70d4c58881fa..e21b75b79416b3aa1f6c10f719c4321ee29b4fbb 100644 (file)
@@ -1,3 +1,8 @@
+Sat May 18 15:07:09 1996  Ezra Peisach  (epeisach@paris)
+
+       * kdb_dbm.c: Do not provide prototypes for dbm_error or
+               dbm_clearerr if they are really macros.
+
 Tue May  7 19:48:57 1996  Ezra Peisach  <epeisach@dumpster.rose.brandeis.edu>
 
        * t_kdb.c (do_testing): Compile if using BERK_DB and dbm is not
index dcef39b953aa9642247177b210c8375b80ef3ec2..e93865f73aaf88b750ea135778d91e4868380b0a 100644 (file)
@@ -99,10 +99,10 @@ static kdb5_dispatch_table kdb5_default_dispatch = {
  * dbm_clearerr are in the library but not prototyped
  * (e.g. NetBSD-1.0)
  */
-#ifdef MISSING_ERROR_PROTO
+#if defined(MISSING_ERROR_PROTO) && !defined(dbm_error)
 int dbm_error PROTOTYPE((DBM *));
 #endif
-#ifdef MISSING_CLEARERR_PROTO
+#if defined(MISSING_CLEARERR_PROTO) && !defined(dbm_clearerr)
 int dbm_clearerr PROTOTYPE((DBM *));
 #endif