stdio.h 118 B

12345678
  1. #ifndef __STDIO_H__
  2. #define __STDIO_H__
  3. #include "tinystdio.h"
  4. #define fprintf(fd, ...) printf(__VA_ARGS__)
  5. #endif