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

include/opensrf/osrf_big_list.h

index ebe3da7..91af59b 100644 (file)
@@ -1,11 +1,14 @@
 #ifndef OSRF_BIG_LIST_H
 #define OSRF_BIG_LIST_H
 
-
 #include <stdio.h>
 #include <opensrf/utils.h>
 #include <Judy.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /**
   Items are stored as void*'s so it's up to the user to
   manage the data wisely.  Also, if the 'freeItem' callback is defined for the list,
@@ -138,5 +141,8 @@ void osrfBigListVanillaFree( void* item );
  */
 void osrfBigListSetDefaultFree( osrfBigList* list );
 
+#ifdef __cplusplus
+}
+#endif
 
 #endif