cowos

custom OS from scratch in C
git clone git://git.daat.foo/cowos.git
Log | Files | Refs | README | LICENSE

stdio.h (176B)


      1 #ifndef _STDIO_H
      2 #define _STDIO_H 1
      3 
      4 #include <klibc/sys/cdefs.h>
      5 
      6 #define EOF (-1)
      7 
      8 int printf(const char* __restrict, ...);
      9 int putchar(int);
     10 int puts(const char*);
     11 
     12 #endif
     13