Added new libc method(printf)

This commit is contained in:
ice-bit
2019-07-03 12:37:16 +02:00
parent 79817e6610
commit f11c690284
3 changed files with 63 additions and 2 deletions

10
kernel/libc/stdio.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef _STDIO_H_
#define _STDIO_H
#include <stdint.h>
#include <stddef.h>
#include <stdarg.h>
int printf(const char *format, ...);
#endif