mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 04:50:08 +03:00
28 lines
790 B
Diff
28 lines
790 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 3c54747ad4421eaceabe154dff08651d5c202678..9d78d1999d06f07b54b0706984d0a7397e1d3d34 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"
|