Move nested headers into complation guard;
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 17:44:05 +0000 (17:44 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 17:44:05 +0000 (17:44 +0000)
prepare for #inclusion in C++

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1592 9efc2488-bf62-4759-914b-345cdb29e865

include/opensrf/log.h

index 11c273e..a50e21e 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef OSRF_LOG_INCLUDED
+#define OSRF_LOG_INCLUDED
+
 #include <opensrf/utils.h>
 
 #include <syslog.h>
@@ -5,8 +8,9 @@
 #include <time.h>
 #include <errno.h>
 
-#ifndef OSRF_LOG_INCLUDED
-#define OSRF_LOG_INCLUDED
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 /* log levels */
 #define OSRF_LOG_ERROR 1
@@ -92,4 +96,8 @@ void osrfLogSetActivityEnabled( int enabled );
  */
 int osrfLogFacilityToInt( char* facility );
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif