Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[MSCV] no UNISTD here
authorMartin Quinson <martin.quinson@loria.fr>
Sun, 13 Sep 2015 21:16:55 +0000 (23:16 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Sun, 13 Sep 2015 21:53:30 +0000 (23:53 +0200)
src/xbt/automaton/parserPromela.lex
src/xbt/automaton/parserPromela.yacc

index 2be47f2..1ed9b9e 100644 (file)
@@ -8,6 +8,10 @@
 
 %{
 
+#include "simgrid_config.h"
+#ifndef HAVE_UNISTD_H
+#define YY_NO_UNISTD_H /* hello Windows */
+#endif
 
 #include <stdio.h>
 #include "parserPromela.tab.hacc"
index 57468b6..d5789f0 100644 (file)
@@ -5,6 +5,10 @@
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 %{
+#include "simgrid_config.h"
+#ifndef HAVE_UNISTD_H
+#define YY_NO_UNISTD_H /* hello Windows */
+#endif
 
 #include "automaton_lexer.yy.c"
 #include <xbt/automaton.h>