Skip to content

Commit

Permalink
Fix visibility of EXTPROC macro
Browse files Browse the repository at this point in the history
* bits/termios.h [!__USE_MISC] (EXTPROC): Do not define.
  • Loading branch information
Samuel Thibault committed Mar 22, 2015
1 parent 6a9350c commit 661a7db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
* nscd/nscd-client.h: Include <time.h>.
* sysdeps/mach/hurd/dl-sysdep.c (fmh): Pass vm_offset_t dummy
9th parameter to __vm_region instead of int.
* bits/termios.h [!__USE_MISC] (EXTPROC): Do not define.

2015-03-19 Roland McGrath <roland@hack.frob.com>

Expand Down
4 changes: 3 additions & 1 deletion bits/termios.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 661a7db

Please sign in to comment.