blob: f94e78308a56c150a64c3d019685c53ef37a3262 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _STDIO_H
#define _STDIO_H
#include <stdarg.h>
#include <sys/types.h>
#include <unistd.h>
#define EOF -1
int puts(char*);
int printf(char*, ...);
int sprintf(char*, char*, ...);
int vsprintf(char*, char*, va_list);
ssize_t read(void *buf, size_t len);
int ctty(int ctty);
#endif
|