summaryrefslogtreecommitdiff
path: root/include/stdio.h
blob: 5387db0d64391799c3eaed4d92fd844590c5ddb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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*, size_t);
ssize_t write(void*, size_t);

int ctty(int);

#endif