mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-13 03:09:51 +03:00
23 lines
649 B
Diff
23 lines
649 B
Diff
Patch-Source: https://github.com/chimera-linux/sd-tools/pull/4
|
|
---
|
|
From 5c0b30f4f8c3392f835194590d9450c3c5283fb8 Mon Sep 17 00:00:00 2001
|
|
From: fossdd <fossdd@pwned.life>
|
|
Date: Tue, 8 Apr 2025 21:52:01 +0200
|
|
Subject: [PATCH] tmpfiles: include sys/resource.h for rlimit
|
|
|
|
---
|
|
src/tmpfiles/tmpfiles.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
|
|
index 502e102..9ee60d8 100644
|
|
--- a/src/tmpfiles/tmpfiles.c
|
|
+++ b/src/tmpfiles/tmpfiles.c
|
|
@@ -19,6 +19,7 @@
|
|
#include <sys/ioctl.h>
|
|
#include <sys/xattr.h>
|
|
#include <sysexits.h>
|
|
+#include <sys/resource.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
|