summaryrefslogtreecommitdiff
path: root/src/strings
diff options
context:
space:
mode:
Diffstat (limited to 'src/strings')
-rw-r--r--src/strings/bcmp.c5
-rw-r--r--src/strings/bcopy.c5
-rw-r--r--src/strings/bzero.c5
-rw-r--r--src/strings/ffs.c5
-rw-r--r--src/strings/index.c5
-rw-r--r--src/strings/rindex.c5
-rw-r--r--src/strings/strcasecmp.c5
-rw-r--r--src/strings/strncasecmp.c5
8 files changed, 40 insertions, 0 deletions
diff --git a/src/strings/bcmp.c b/src/strings/bcmp.c
index 052beb7c..7c5010e7 100644
--- a/src/strings/bcmp.c
+++ b/src/strings/bcmp.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <string.h>
#include <strings.h>
@@ -9,3 +11,6 @@ int bcmp(const void *s1, const void *s2, size_t n)
/*
XOPEN(400,700)
*/
+
+
+#endif
diff --git a/src/strings/bcopy.c b/src/strings/bcopy.c
index a464db8e..3cc0ac6b 100644
--- a/src/strings/bcopy.c
+++ b/src/strings/bcopy.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <string.h>
#include <strings.h>
@@ -10,3 +12,6 @@ int bcopy(const void *s1, void *s2, size_t n)
/*
XOPEN(400,700)
*/
+
+
+#endif
diff --git a/src/strings/bzero.c b/src/strings/bzero.c
index 383d55c3..dd28c8b6 100644
--- a/src/strings/bzero.c
+++ b/src/strings/bzero.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <string.h>
#include <strings.h>
@@ -9,3 +11,6 @@ void bzero(void* s, size_t n)
/*
XOPEN(400,700)
*/
+
+
+#endif
diff --git a/src/strings/ffs.c b/src/strings/ffs.c
index 7e29487d..8c37ed0b 100644
--- a/src/strings/ffs.c
+++ b/src/strings/ffs.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <strings.h>
int ffs(int i)
@@ -18,3 +20,6 @@ int ffs(int i)
/*
XOPEN(400)
*/
+
+
+#endif
diff --git a/src/strings/index.c b/src/strings/index.c
index 0d5ca277..5531451f 100644
--- a/src/strings/index.c
+++ b/src/strings/index.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <string.h>
#include <strings.h>
@@ -9,3 +11,6 @@ char *index(const char *s, int c)
/*
XOPEN(400,700)
*/
+
+
+#endif
diff --git a/src/strings/rindex.c b/src/strings/rindex.c
index 2050de25..4f381cc0 100644
--- a/src/strings/rindex.c
+++ b/src/strings/rindex.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <string.h>
#include <strings.h>
@@ -9,3 +11,6 @@ char *rindex(const char *s, int c)
/*
XOPEN(400,700)
*/
+
+
+#endif
diff --git a/src/strings/strcasecmp.c b/src/strings/strcasecmp.c
index a5955f4e..b8f6ea11 100644
--- a/src/strings/strcasecmp.c
+++ b/src/strings/strcasecmp.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <strings.h>
#include <ctype.h>
@@ -24,3 +26,6 @@ int strcasecmp(const char *s1, const char *s2)
XOPEN(400)
POSIX(200809)
*/
+
+
+#endif
diff --git a/src/strings/strncasecmp.c b/src/strings/strncasecmp.c
index fc02e734..7942be88 100644
--- a/src/strings/strncasecmp.c
+++ b/src/strings/strncasecmp.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <strings.h>
#include <ctype.h>
@@ -29,3 +31,6 @@ int strncasecmp(const char *s1, const char *s2, size_t n)
XOPEN(400)
POSIX(200809)
*/
+
+
+#endif