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

include/opensrf/osrf_list.h

index d740686..35ec116 100644 (file)
@@ -3,6 +3,10 @@
 
 #include <opensrf/utils.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #define OSRF_LIST_GET_INDEX(l, i) (!l || i >= l->size) ? NULL: l->arrlist[i]
 
 /**
@@ -139,5 +143,8 @@ void osrfListSetDefaultFree( osrfList* list );
  * list if there are no null slots */
 int osrfListPushFirst( osrfList* list, void* item );
 
+#ifdef __cplusplus
+}
+#endif
 
 #endif