From 3d1180b17f81b2d6ec17b0902dd27d3febece7ca Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 13 Aug 1996 23:07:40 +0000 Subject: [PATCH] C++ support --- src/db/db_access.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/db/db_access.h b/src/db/db_access.h index 99ba20fde..b78d82f94 100644 --- a/src/db/db_access.h +++ b/src/db/db_access.h @@ -88,6 +88,10 @@ #ifndef INCLdb_accessh #define INCLdb_accessh +#ifdef __cplusplus +extern "C" { +#endif + #include #include @@ -1183,4 +1187,8 @@ short db_name_to_addr(); short db_put_field(); short db_get_field(); +#ifdef __cplusplus +} +#endif + #endif /* INCLdb_accessh */