summaryrefslogtreecommitdiff
path: root/src/sys/resource/struct_rlimit.h
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 16:31:15 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 16:31:15 -0400
commit24a60ffba1893a3506a6ed15fd4b26479d966cf3 (patch)
tree5b3ead7c1110b58b6c32829c48cff79cc346121a /src/sys/resource/struct_rlimit.h
parent1c9b7df133f4130f7db4038d0b034418c5867ac1 (diff)
rename non-compiled files to *.h
Diffstat (limited to 'src/sys/resource/struct_rlimit.h')
-rw-r--r--src/sys/resource/struct_rlimit.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sys/resource/struct_rlimit.h b/src/sys/resource/struct_rlimit.h
new file mode 100644
index 00000000..b0169e1e
--- /dev/null
+++ b/src/sys/resource/struct_rlimit.h
@@ -0,0 +1,10 @@
+#include <sys/resource.h>
+
+struct rlimit {
+ rlim_t rlim_cur;
+ rlim_t rlim_max;
+};
+
+/*
+XOPEN(400)
+*/