mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-05 08:42:11 +01:00
21 lines
476 B
Diff
21 lines
476 B
Diff
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>
|
|
--
|