stdio.h 174 B

123456789101112
  1. #ifndef __STDIO_H
  2. #define __STDIO_H
  3. #include <debug.h>
  4. #include <printf.h>
  5. void putc(char c);
  6. int puts(const char *str);
  7. int getc(char *c); // XXX not really getc
  8. #endif