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
+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
* 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