vulcanos/kernel/libc/stdio.h
2019-07-03 12:37:16 +02:00

10 lines
141 B
C

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