From 661a7dbad01ea6a55052e0225c88116c873c0bf4 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 22 Mar 2015 17:27:51 +0100 Subject: Fix visibility of EXTPROC macro * bits/termios.h [!__USE_MISC] (EXTPROC): Do not define. --- bits/termios.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'bits/termios.h') diff --git a/bits/termios.h b/bits/termios.h index 8a2fcafdf1..460729dacd 100644 --- a/bits/termios.h +++ b/bits/termios.h @@ -230,7 +230,9 @@ struct termios #endif #define _IEXTEN (1 << 10) /* Enable DISCARD and LNEXT. */ #define IEXTEN _IEXTEN -#define EXTPROC (1 << 11) /* External processing. */ +#ifdef __USE_MISC +# define EXTPROC (1 << 11) /* External processing. */ +#endif #define _TOSTOP (1 << 22) /* Send SIGTTOU for background output. */ #define TOSTOP _TOSTOP #ifdef __USE_MISC -- cgit v1.2.3