summaryrefslogtreecommitdiff
path: root/Ports/oksh
diff options
context:
space:
mode:
Diffstat (limited to 'Ports/oksh')
-rw-r--r--Ports/oksh/patches/implement_isblank.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/Ports/oksh/patches/implement_isblank.patch b/Ports/oksh/patches/implement_isblank.patch
deleted file mode 100644
index 48c0a5b652..0000000000
--- a/Ports/oksh/patches/implement_isblank.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/charclass.h b/charclass.h
-index 5edb2c1..af00709 100644
---- a/charclass.h
-+++ b/charclass.h
-@@ -7,6 +7,11 @@
- /*
- * POSIX character class support for fnmatch() and glob().
- */
-+int
-+isblank(int c)
-+{
-+ return (c == ' ' || c == '\t');
-+}
- static struct cclass {
- const char *name;
- int (*isctype)(int);