git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

Windows/unistd.h

      1 #include <io.h>
      2 #define STDIN_FILENO 0
      3 #define STDOUT_FILENO 1
      4 #define STDERR_FILENO 2
      5 
      6 #define read(...) _read(__VA_ARGS__)
      7 #define write(...) _write(__VA_ARGS__)
      8 #define isatty(...) _isatty(__VA_ARGS__)
      9 #define close(...) _close(__VA_ARGS__)
     10 #define creat(...) _creat(__VA_ARGS__)

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.