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

#include <stdarg.h>

int puts(char*);
int rsputs(char*);

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

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

#endif