diff options
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 |