mirror of
https://github.com/cowmonk/cowos.git
synced 2025-10-27 22:43:26 +00:00
13 lines
176 B
C
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
|
|
|