2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 line
262 B

  1. #ifndef IZ_COMPAT_H
  2. #define IZ_COMPAT_H
  3. #if defined IZ_WINDOWS
  4. #define isatty _isatty
  5. #define fileno _fileno
  6. #endif
  7. #if defined IZ_UNIX
  8. typedef size_t rsize_t;
  9. typedef int errno_t;
  10. #endif
  11. #if defined IZ_MACOS
  12. typedef int errno_t;
  13. #endif
  14. #endif //IZ_COMPAT_H