Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
define isatty() on architectures that lack it
[simgrid.git] / src / xbt / automaton / parserPromela.lex
index 1ed9b9e5f2914bfac456ce90a0ec9dc0d1c92274..04384ea842dbb6e5d5a5590f7df969bdeeccdeb0 100644 (file)
@@ -11,6 +11,9 @@
 #include "simgrid_config.h"
 #ifndef HAVE_UNISTD_H
 #define YY_NO_UNISTD_H /* hello Windows */
+static int isatty(int fd) {
+  return 0;
+}
 #endif
 
 #include <stdio.h>