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

include/opensrf/utils.h

index ae2a7ee..912698d 100644 (file)
@@ -29,6 +29,10 @@ GNU General Public License for more details.
 #include <string.h>
 //#include <sys/timeb.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #include "md5.h"
 
 #define OSRF_MALLOC(ptr, size) \
@@ -277,4 +281,8 @@ char* md5sum( const char* text, ... );
   */
 int osrfUtilsCheckFileDescriptor( int fd );
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif