diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-07-30 14:15:20 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-07-30 14:15:20 +0200 |
commit | fa772d69bce431ea208f30c9966355d00eede6cd (patch) | |
tree | bdfe44fcd37c52378dd1cd739464e6ff2596132b | |
parent | 63d26c48e9c1d486efd24eda4b3a65066f315234 (diff) |
sysctl: Include limits.h instead of linux/limits.h
Avoid including linux specific headers if possible.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <linux/limits.h> +#include <limits.h> #include "built_in.h" |