aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox/glibc.patch
blob: 52c9efba1f09f2c158901dfb11e70fd0c9848a71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Fix this by including sys/resource.h.

Signed-off-by: Markus Trippelsdorf <markus at trippelsdorf.de>
---
 include/libbb.h |    1 +
 1 file changed, 1 insertion(+)

diff --git a/include/libbb.h b/include/libbb.h
index f12800f..e7806c2 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -40,6 +40,7 @@
 #include <sys/poll.h>
 #include <sys/ioctl.h>
 #include <sys/mman.h>
+#include <sys/resource.h>
 #include <sys/socket.h>
 #include <sys/stat.h>
 #include <sys/time.h>
--