cowos/kernel/include/klibc/stdio.h
2025-05-28 18:58:30 -07:00

13 lines
176 B
C

#ifndef _STDIO_H
#define _STDIO_H 1
#include <klibc/sys/cdefs.h>
#define EOF (-1)
int printf(const char* __restrict, ...);
int putchar(int);
int puts(const char*);
#endif