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

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

src/gateway/apachetools.h

index 4f951f8..ac85bb2 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef APACHE_TOOLS_H
+#define APACHE_TOOLS_H
+
 #include "httpd.h"
 #include "http_config.h"
 #include "http_core.h"
@@ -12,8 +15,9 @@
 #include "opensrf/utils.h"
 #include "opensrf/log.h"
 
-#ifndef APACHE_TOOLS_H
-#define APACHE_TOOLS_H
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 #define APACHE_TOOLS_MAX_POST_SIZE 10485760 /* 10 MB */
 
@@ -53,5 +57,8 @@ int apacheError( char* msg, ... );
 apr_table_t* apacheParseCookies(request_rec *r);
 */
 
+#ifdef __cplusplus
+}
+#endif
 
 #endif