diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-01-30 02:48:05 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-01-30 02:48:05 +0100 |
commit | b9f880f4f4903f5dd8198fc1e2e920a9850ac86e (patch) | |
tree | 05c75bf67c6544ebe35fe858957f534d8687f90c /missing.h | |
parent | 7d55e83536b296d452829d87a93c86f867859cba (diff) |
add missing header files
Diffstat (limited to 'missing.h')
-rw-r--r-- | missing.h | 12 |
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 |