diff options
author | Richard Braun <rbraun@sceen.net> | 2017-05-31 19:23:51 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-05-31 19:23:51 +0200 |
commit | 2f4a4c7b6f4e4836c7528f1d0ae2b35d06dd1a23 (patch) | |
tree | 1897d3b30822aeeb6ee238f65a1f34cc356a76dd /kern/bitmap.c | |
parent | 436fe6cb9711401fcc1f1d8fc29025f1aec5b774 (diff) |
Move limits.h to the include directory
This turns limits.h into a standard header.
Diffstat (limited to 'kern/bitmap.c')
-rw-r--r-- | kern/bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/bitmap.c b/kern/bitmap.c index d270b9f5..0e13ef55 100644 --- a/kern/bitmap.c +++ b/kern/bitmap.c @@ -15,11 +15,11 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <limits.h> #include <string.h> #include <kern/bitmap.h> #include <kern/bitmap_i.h> -#include <kern/limits.h> int bitmap_cmp(const unsigned long *a, const unsigned long *b, int nr_bits) |