This repository has been archived on 2024-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
rockOS/libc/include/stdio.h

23 lines
294 B
C

#ifndef _STDIO_H
#define _STDIO_H 1
#include <sys/cdefs.h>
#include <stdarg.h>
#define EOF (-1)
#ifdef __cplusplus
extern "C" {
#endif
int vprintf(const char *, va_list);
int printf(const char* __restrict, ...);
int putchar(int);
int puts(const char*);
#ifdef __cplusplus
}
#endif
#endif