blu_os
Loading...
Searching...
No Matches
stdio.h
1//
2// Created by dylan on 08/07/2026.
3//
4
5#ifndef BLU_OS_STDIO_H
6#define BLU_OS_STDIO_H
7
8#include <sys/cdefs.h>
9
10#define EOF (-1)
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16int printf(const char* __restrict, ...);
17int putchar(int);
18int puts(const char*);
19
20#ifdef __cplusplus
21}
22#endif
23
24#endif //BLU_OS_STDIO_H