unistd: add execvp()
[neatlibc.git] / stdio.h
blob048f5d46d90b30297b7e769f1617c12bcb508761
1 #include <stdarg.h>
3 typedef struct {
4 int fd;
5 } FILE;
7 extern FILE *stdout;
8 extern FILE *stderr;
10 int printf(char *fmt, ...);
11 int fprintf(FILE *filp, char *fmt, ...);
12 int sprintf(char *dst, char *fmt, ...);
13 int vsprintf(char *dst, char *fmt, va_list ap);
15 void perror(char *s);