mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
27 lines
724 B
Diff
27 lines
724 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Kenneth Myhra <kennethmyhra@gmail.com>
|
|
Date: Sat, 25 Dec 2021 19:15:35 +0100
|
|
Subject: [PATCH] filemanager/ext.c: Include strings.h if SerenityOS
|
|
|
|
- [ ] Local?
|
|
- [X] Should be merged to upstream?
|
|
- [ ] Resolves issue(s) with our side of things
|
|
- [ ] Hack
|
|
---
|
|
src/filemanager/ext.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/src/filemanager/ext.c b/src/filemanager/ext.c
|
|
index a18fda0..12bd8d5 100644
|
|
--- a/src/filemanager/ext.c
|
|
+++ b/src/filemanager/ext.c
|
|
@@ -36,6 +36,9 @@
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
+#ifdef __serenity__
|
|
+#include <strings.h>
|
|
+#endif
|
|
#include <unistd.h>
|
|
|
|
#include "lib/global.h"
|