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

#include <stdarg.h>

#define EOF -1

int puts(char*);

int printf(char*, ...);
int sprintf(char*, char*, ...);

int vsprintf(char*, char*, va_list);

int ctty(int ctty);

#endif