my_printf.h
304 Bytes
#ifndef MY_PRINTF_H
#define MY_PRINTF_H
#include <stdarg.h>
#include <stddef.h>
#define FILE void
//#define stdout 0
extern FILE *stderr;
extern FILE *stdout;
#define printf printf_
int printf_(char const *fmt, ...);
#define fprintf fprintf_
int fprintf_(FILE *file, char const *fmt, ...);
#endif