/************************************** * iceOS Kernel * * Developed by Marco 'icebit' Cetica * * (c) 2019 * * Released under GPLv3 * * https://github.com/ice-bit/iceOS * ***************************************/ #ifndef _STDIO_H_ #define _STDIO_H_ #include #include #include int printf(const char *format, ...); void puts(const char *buf); #endif