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 2be47f2..04384ea 100644 (file)
@@ -8,6 +8,13 @@
 
 %{
 
+#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>
 #include "parserPromela.tab.hacc"