X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/c3d6f1ff09458b3e7619f9bc4799aec0ab5fc2f2..0cc804c87799fb5902e66d5bd537a762f786dc2a:/src/src/dbfunctions.h diff --git a/src/src/dbfunctions.h b/src/src/dbfunctions.h index f3b04ad2f..384613981 100644 --- a/src/src/dbfunctions.h +++ b/src/src/dbfunctions.h @@ -5,6 +5,8 @@ /* Copyright (c) University of Cambridge 1995 - 2021 */ /* See the file NOTICE for conditions of use and distribution. */ +#ifndef DBFUNCTIONS_H +#define DBFUNCTIONS_H /* Functions for reading/writing exim database files */ @@ -24,11 +26,12 @@ int dbfn_write(open_db *, const uschar *, void *, int); changed at release 4.3. */ #if defined(USE_DB) && defined(DB_VERSION_STRING) -#if DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 3) +# if DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 3) void dbfn_bdb_error_callback(const DB_ENV *, const char *, const char *); -#else +# else void dbfn_bdb_error_callback(const char *, char *); -#endif +# endif #endif +#endif /* End of dbfunctions.h */