aboutsummaryrefslogtreecommitdiff
path: root/src/libc/include/stdio.h
blob: 91d440bb3c0d88ff92c3e1d78d66e4373c9dcfe2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _STDIO_H
#define _STDIO_H

enum
{
    EOF = -1
};

typedef struct __file FILE;

FILE *fopen(const char *__path, const char *__mode);
int printf(const char *__fmt, ...);
int fprintf(FILE *__stream, const char *__fmt, ...);

extern FILE *stdin, *stdout, *stderr;

#endif