]> andersk Git - splint.git/blobdiff - src/cscanner.l
cpplib.c: added OS2 conditional after emtpy default: label (see
[splint.git] / src / cscanner.l
index 272181e40fc4ab3de8e5d6e1ae95fb790087a0d3..d87930ecb494a35107d98029161a777d1f2890ea 100644 (file)
@@ -60,7 +60,13 @@ ULSuffix                ({U}{L}|{L}{U})
 */
 
 # include "lclintMacros.nf"
+# if defined(OS2) && defined(__IBMC__)
+   /* needed for isatty()... */
+# include <io.h>
+# else
 # include <unistd.h>
+# endif
+
 # include "basic.h"
 
 # include "cgrammar.h"
@@ -69,11 +75,6 @@ ULSuffix                ({U}{L}|{L}{U})
 # include "fileIdList.h"
 # include "portab.h"
 
-# if defined(OS2) && defined(__IBMC__)
-   /* needed for isatty()... */
-# include <io.h>
-# endif
-
 static bool lastWasString = FALSE;
 static char savechar = '\0';
 
This page took 0.036435 seconds and 4 git commands to generate.