summaryrefslogtreecommitdiff
path: root/kern/sprintf.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-05-31 19:23:51 +0200
committerRichard Braun <rbraun@sceen.net>2017-05-31 19:23:51 +0200
commit2f4a4c7b6f4e4836c7528f1d0ae2b35d06dd1a23 (patch)
tree1897d3b30822aeeb6ee238f65a1f34cc356a76dd /kern/sprintf.c
parent436fe6cb9711401fcc1f1d8fc29025f1aec5b774 (diff)
Move limits.h to the include directory
This turns limits.h into a standard header.
Diffstat (limited to 'kern/sprintf.c')
-rw-r--r--kern/sprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/sprintf.c b/kern/sprintf.c
index a606d866..f6346e99 100644
--- a/kern/sprintf.c
+++ b/kern/sprintf.c
@@ -15,12 +15,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <limits.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
-#include <kern/limits.h>
#include <kern/types.h>
/*