summaryrefslogtreecommitdiff
path: root/kern/printf.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/printf.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/printf.c')
-rw-r--r--kern/printf.c4
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>
/*