summaryrefslogtreecommitdiff
path: root/include/stdio.h
blob: d37699a89d3ba106489b3d52834ec3f324828c4e (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _STDIO_H
#define _STDIO_H

#include <stdarg.h>

int printf(char*, ...);

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

#endif