Prepare for #inclusion in C++
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 22:18:16 +0000 (22:18 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 22:18:16 +0000 (22:18 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1610 9efc2488-bf62-4759-914b-345cdb29e865

include/opensrf/osrf_system.h

index 3272309..7c2a209 100644 (file)
@@ -8,7 +8,9 @@
 #include <opensrf/osrfConfig.h>
 #include <opensrf/osrf_cache.h>
 
-
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 /** Connects to jabber.  Returns 1 on success, 0 on failure 
        contextnode is the location in the config file where we collect config info
@@ -57,4 +59,8 @@ void osrfSystemIgnoreTransportClient();
 /** Initialize the cache connection */
 int osrfSystemInitCache(void);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif