summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/syslinux-4.03/com32/lib/strchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/syslinux-4.03/com32/lib/strchr.c')
-rw-r--r--contrib/syslinux/syslinux-4.03/com32/lib/strchr.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/contrib/syslinux/syslinux-4.03/com32/lib/strchr.c b/contrib/syslinux/syslinux-4.03/com32/lib/strchr.c
deleted file mode 100644
index cd3ec78..0000000
--- a/contrib/syslinux/syslinux-4.03/com32/lib/strchr.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * strchr.c
- */
-
-#include <string.h>
-
-char *strchr(const char *s, int c)
-{
- while (*s != (char)c) {
- if (!*s)
- return NULL;
- s++;
- }
-
- return (char *)s;
-}