aboutsummaryrefslogtreecommitdiff
path: root/include/Config/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Config/string.h')
-rw-r--r--include/Config/string.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/Config/string.h b/include/Config/string.h
new file mode 100644
index 0000000000..dd02941f28
--- /dev/null
+++ b/include/Config/string.h
@@ -0,0 +1,18 @@
+/*
+ * Header file: string.h
+ *
+ * Description:
+ * This header file is the autoconf replacement for string.h (if it lives
+ * on the system).
+ */
+
+#ifndef _CONFIG_STRING_H
+#define _CONFIG_STRING_H
+
+#include "Config/config.h"
+
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
+
+#endif