aboutsummaryrefslogtreecommitdiff
path: root/include/compat.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-04-11 00:28:05 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-04-11 00:47:36 -0400
commitc11ebe8974309a441ae49ae8116eccb17c61fa5f (patch)
treec4e539fd00d31db679efdf5eb4726be6fd8c8862 /include/compat.h
parentf04a13fd4b7c665dfecdeaef82e2ab628d6f402d (diff)
downloadspmc-c11ebe8974309a441ae49ae8116eccb17c61fa5f.tar.gz
Include protoypes for compat implementations
Diffstat (limited to 'include/compat.h')
-rw-r--r--include/compat.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/compat.h b/include/compat.h
new file mode 100644
index 0000000..b116f2c
--- /dev/null
+++ b/include/compat.h
@@ -0,0 +1,14 @@
+#ifndef SPM_COMPAT_H
+#define SPM_COMPAT_H
+
+#include "config.h"
+
+#ifndef HAVE_STRSEP
+char *strsep(char **sp, char *sep);
+#endif
+
+#ifndef HAVE_REALLOC_ARRAY
+void *reallocarray (void *__ptr, size_t __nmemb, size_t __size);
+#endif
+
+#endif //SPM_COMPAT_H