summaryrefslogtreecommitdiff
path: root/kern/thread.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-04-29 21:47:28 +0200
committerRichard Braun <rbraun@sceen.net>2017-04-29 21:59:03 +0200
commit5a048710ee9dd4112ec467da29fef27ef18b0876 (patch)
tree6998b99fc74d459c00d0e3bd2d50c56502c24be2 /kern/thread.c
parentd78a948f0a1d8b7b3385944c736d7cffd8ca67a7 (diff)
New stdio.h standard header
Make kernel code obtain definitions for the printf family of functions through the inclusion of the standard stdio.h header.
Diffstat (limited to 'kern/thread.c')
-rw-r--r--kern/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/thread.c b/kern/thread.c
index 8a87acaa..947b8cfd 100644
--- a/kern/thread.c
+++ b/kern/thread.c
@@ -83,6 +83,7 @@
#include <stdbool.h>
#include <stddef.h>
+#include <stdio.h>
#include <string.h>
#include <kern/assert.h>
@@ -101,7 +102,6 @@
#include <kern/percpu.h>
#include <kern/sleepq.h>
#include <kern/spinlock.h>
-#include <kern/sprintf.h>
#include <kern/sref.h>
#include <kern/syscnt.h>
#include <kern/task.h>