Ports: Remove obsolete patch for the oksh port

The patch is not necessary anymore and breaks the build
now that LibC has isblank.
This commit is contained in:
Gunnar Beutner 2021-04-14 21:58:17 +02:00 committed by Andreas Kling
parent f62f6c2b37
commit d96354f58e
Notes: sideshowbarker 2024-07-18 20:20:16 +09:00

View file

@ -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);