• Scientific Computing | SciVision

  • Blog
  • Tags
  • Categories

Windows POSIX write()

9 May, 2022

Windows C++ programs using POSIX write or read should have a preprocessor include io.h like:

#ifdef _WIN32
#include <io.h>
#endif
  • c++
  • Microsoft Windows