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/log2.h | |
parent | 436fe6cb9711401fcc1f1d8fc29025f1aec5b774 (diff) |
Move limits.h to the include directory
This turns limits.h into a standard header.
Diffstat (limited to 'kern/log2.h')
-rw-r--r-- | kern/log2.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kern/log2.h b/kern/log2.h index ebcf2f38..ed12b441 100644 --- a/kern/log2.h +++ b/kern/log2.h @@ -22,8 +22,7 @@ #define _KERN_LOG2_H #include <assert.h> - -#include <kern/limits.h> +#include <limits.h> static inline unsigned int ilog2(unsigned long x) |