From: Roland McGrath Date: Wed, 21 May 2008 19:37:10 +0000 (+0000) Subject: 2008-05-21 Samuel Thibault X-Git-Tag: upstream/2.20~7198 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=844625b5cd92f0e6b8ba618c8685287c7e789cd1;p=platform%2Fupstream%2Flinaro-glibc.git 2008-05-21 Samuel Thibault * bits/termios.h (ONLCR): Define under [__USE_XOPEN] too. --- diff --git a/bits/termios.h b/bits/termios.h index 4dc0fab..293d0a6 100644 --- a/bits/termios.h +++ b/bits/termios.h @@ -135,8 +135,10 @@ struct termios /* Output modes. */ tcflag_t c_oflag; #define OPOST (1 << 0) /* Perform output processing. */ -#ifdef __USE_BSD +#if defined __USE_BSD || defined __USE_XOPEN # define ONLCR (1 << 1) /* Map NL to CR-NL on output. */ +#endif +#ifdef __USE_BSD # define OXTABS TAB3 /* Expand tabs to spaces. */ # define ONOEOT (1 << 3) /* Discard EOT (^D) on output. */ #endif