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 | 5a048710ee9dd4112ec467da29fef27ef18b0876 (patch) | |
tree | 6998b99fc74d459c00d0e3bd2d50c56502c24be2 /arch/x86/machine/pmap.c | |
parent | d78a948f0a1d8b7b3385944c736d7cffd8ca67a7 (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 'arch/x86/machine/pmap.c')
-rw-r--r-- | arch/x86/machine/pmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/machine/pmap.c b/arch/x86/machine/pmap.c index 63a29095..1de9b093 100644 --- a/arch/x86/machine/pmap.c +++ b/arch/x86/machine/pmap.c @@ -19,6 +19,7 @@ */ #include <stddef.h> +#include <stdio.h> #include <string.h> #include <kern/assert.h> @@ -33,7 +34,6 @@ #include <kern/param.h> #include <kern/percpu.h> #include <kern/spinlock.h> -#include <kern/sprintf.h> #include <kern/syscnt.h> #include <kern/thread.h> #include <machine/biosmem.h> |