Add compilation guard; prepare for #inclusion in C++
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 15:50:56 +0000 (15:50 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 15:50:56 +0000 (15:50 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1584 9efc2488-bf62-4759-914b-345cdb29e865

src/ports/strn_compat/strndup.h

index be91f5f..e678e8c 100644 (file)
  * OTHER DEALINGS IN THE SOFTWARE.
  */
 
+#ifndef STRNDUP_H
+#define STRNDUP_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 char   *strndup(const char *s, size_t n);
 
+#ifdef __cplusplus
+}
+#endif
+
+#endif