mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +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
Notes:
sideshowbarker
2024-07-18 20:20:16 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/d96354f58e3 Pull-request: https://github.com/SerenityOS/serenity/pull/6327
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…
Reference in a new issue