diff options
author | Richard Braun <rbraun@sceen.net> | 2017-04-29 21:47:28 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-04-29 21:59:03 +0200 |
commit | df821de94a16bd831959639db0cac793565b5445 (patch) | |
tree | 6998b99fc74d459c00d0e3bd2d50c56502c24be2 /kern/printf.c | |
parent | 66a553d8d1f2486f6e7b2ea9a45718f2633b910d (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/printf.c')
-rw-r--r-- | kern/printf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/printf.c b/kern/printf.c index 6cd6464b..7e48b5dd 100644 --- a/kern/printf.c +++ b/kern/printf.c @@ -15,9 +15,9 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include <kern/printf.h> +#include <stdio.h> + #include <kern/spinlock.h> -#include <kern/sprintf.h> #include <machine/cpu.h> /* |