summaryrefslogtreecommitdiff
path: root/kern/task.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
commitdf821de94a16bd831959639db0cac793565b5445 (patch)
tree6998b99fc74d459c00d0e3bd2d50c56502c24be2 /kern/task.c
parent66a553d8d1f2486f6e7b2ea9a45718f2633b910d (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/task.c')
-rw-r--r--kern/task.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/task.c b/kern/task.c
index d2aaa80d..7f1c53d2 100644
--- a/kern/task.c
+++ b/kern/task.c
@@ -16,6 +16,7 @@
*/
#include <stddef.h>
+#include <stdio.h>
#include <string.h>
#include <kern/error.h>