#include "creaSystem.h" namespace crea { #ifdef _WIN32 int System::HasTTY() { return false; } #else #include int System::HasTTY() { return isatty(fileno(stdin)); } #endif } // namespace crea