comparison lib-src/etags.c @ 66219:90109c37ac78

Undef STDIN if defined. (LynxOS defines it in system header files.)
author Eli Zaretskii <eliz@gnu.org>
date Thu, 20 Oct 2005 13:13:17 +0000
parents fbae8bd411de
children bf8620d8ff03 0ca0d9181b5e
comparison
equal deleted inserted replaced
66218:44a12d0eb7c6 66219:90109c37ac78
474 static bool no_warnings; /* -w: suppress warnings */ 474 static bool no_warnings; /* -w: suppress warnings */
475 static bool cxref_style; /* -x: create cxref style output */ 475 static bool cxref_style; /* -x: create cxref style output */
476 static bool cplusplus; /* .[hc] means C++, not C */ 476 static bool cplusplus; /* .[hc] means C++, not C */
477 static bool ignoreindent; /* -I: ignore indentation in C */ 477 static bool ignoreindent; /* -I: ignore indentation in C */
478 static bool packages_only; /* --packages-only: in Ada, only tag packages*/ 478 static bool packages_only; /* --packages-only: in Ada, only tag packages*/
479
480 /* STDIN is defined in LynxOS system headers */
481 #ifdef STDIN
482 #undef STDIN
483 #endif
479 484
480 #define STDIN 0x1001 /* returned by getopt_long on --parse-stdin */ 485 #define STDIN 0x1001 /* returned by getopt_long on --parse-stdin */
481 static bool parsing_stdin; /* --parse-stdin used */ 486 static bool parsing_stdin; /* --parse-stdin used */
482 487
483 #ifdef ETAGS_REGEXPS 488 #ifdef ETAGS_REGEXPS