mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:37:34 +00:00
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:
parent
f62f6c2b37
commit
d96354f58e
1 changed files with 0 additions and 16 deletions
|
@ -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);
|
|
Loading…
Add table
Add a link
Reference in a new issue