From 28208a459a7c3305dd2f7b0e4076b2cd74412bee Mon Sep 17 00:00:00 2001 From: Mark Eichin Date: Mon, 11 Nov 1996 22:03:50 +0000 Subject: * db2: overflow_page fixes, __P redef * db2 tests: better alternate dictionary support (orignal ChangeLogs included) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9373 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/db2/include/db.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/util/db2/include') diff --git a/src/util/db2/include/db.h b/src/util/db2/include/db.h index db19429e3..53c587b75 100644 --- a/src/util/db2/include/db.h +++ b/src/util/db2/include/db.h @@ -90,11 +90,13 @@ typedef enum { DB_BTREE, DB_HASH, DB_RECNO } DBTYPE; /* deal with turning prototypes on and off */ +#ifndef __P #if defined(__STDC__) || defined(__cplusplus) #define __P(protos) protos /* full-blown ANSI C */ #else /* !(__STDC__ || __cplusplus) */ #define __P(protos) () /* traditional C preprocessor */ #endif +#endif /* no __P from system */ /* Access method description structure. */ typedef struct __db { -- cgit