summaryrefslogtreecommitdiff
path: root/include/stdio.h
blob: 9bfa8aa8678207621b32d2054c45c3542d26aba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _STDIO_H
#define _STDIO_H

#include <stdarg.h>

int getc(void);

void putchar(const char); 
void puts(const char *);
void printf(const char *, ...);

#define stdin	0
#define stdout	1
#define stderr	2

#endif /* _STDIO_H */