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_i.h | |
parent | 436fe6cb9711401fcc1f1d8fc29025f1aec5b774 (diff) |
Move limits.h to the include directory
This turns limits.h into a standard header.
Diffstat (limited to 'kern/bitmap_i.h')
-rw-r--r-- | kern/bitmap_i.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kern/bitmap_i.h b/kern/bitmap_i.h index 39a330c9..9b79d3ce 100644 --- a/kern/bitmap_i.h +++ b/kern/bitmap_i.h @@ -18,7 +18,8 @@ #ifndef _KERN_BITMAP_I_H #define _KERN_BITMAP_I_H -#include <kern/limits.h> +#include <limits.h> + #include <kern/macros.h> #define BITMAP_LONGS(nr_bits) DIV_CEIL(nr_bits, LONG_BIT) |