Commit 9cc014f9 by Vasiliy Fofanov Committed by Arnaud Charlet

gen-oscons.c: Adapt for VMS where termios.h is not available.

2008-08-05  Vasiliy Fofanov  <fofanov@adacore.com>

	* gen-oscons.c: Adapt for VMS where termios.h is not available.

From-SVN: r138682
parent 215aeb67
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
#include <limits.h> #include <limits.h>
#include <fcntl.h> #include <fcntl.h>
#ifndef __vxworks #if !defined (__vxworks) && !defined (__VMS)
# include <termios.h> # include <termios.h>
#endif #endif
...@@ -193,7 +193,7 @@ _NL ...@@ -193,7 +193,7 @@ _NL
#endif #endif
CND(FNDELAY, "Nonblocking") CND(FNDELAY, "Nonblocking")
#if !defined(__vxworks) #if !defined(__vxworks) && !defined(__VMS)
_NL _NL
TXT(" ----------------------") TXT(" ----------------------")
...@@ -507,7 +507,7 @@ CND(VLNEXT, "Literal next") ...@@ -507,7 +507,7 @@ CND(VLNEXT, "Literal next")
#endif #endif
CND(VEOL2, "Alternative EOL") CND(VEOL2, "Alternative EOL")
#endif /* !defined(__vxworks) */ #endif /* !defined(__vxworks) && !defined(__VMS) */
_NL _NL
TXT(" --------------") TXT(" --------------")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment