summaryrefslogtreecommitdiff
path: root/missing.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-01-30 02:48:05 +0100
committerLennart Poettering <lennart@poettering.net>2010-01-30 02:48:05 +0100
commitb9f880f4f4903f5dd8198fc1e2e920a9850ac86e (patch)
tree05c75bf67c6544ebe35fe858957f534d8687f90c /missing.h
parent7d55e83536b296d452829d87a93c86f867859cba (diff)
add missing header files
Diffstat (limited to 'missing.h')
-rw-r--r--missing.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/missing.h b/missing.h
new file mode 100644
index 0000000000..6f1e5998ec
--- /dev/null
+++ b/missing.h
@@ -0,0 +1,12 @@
+#ifndef foomissinghfoo
+#define foomissinghfoo
+
+/* Missing glibc definitions to access certain kernel APIs */
+
+#include <sys/resource.h>
+
+#ifndef RLIMIT_RTTIME
+#define RLIMIT_RTTIME 15
+#endif
+
+#endif