about summary refs log tree commit diff
path: root/bits/termios.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-07-24 00:18:21 +0000
committerRoland McGrath <roland@gnu.org>1999-07-24 00:18:21 +0000
commit05a6acd0b0bfdf75ee0cb7a50e518efd2d8c7e52 (patch)
tree55ba679519d9f73c542076ab7937cf90a4b22034 /bits/termios.h
parent1ad3e19980910975be712bed9fb0b68192f12ed7 (diff)
downloadglibc-05a6acd0b0bfdf75ee0cb7a50e518efd2d8c7e52.tar.gz
glibc-05a6acd0b0bfdf75ee0cb7a50e518efd2d8c7e52.tar.xz
glibc-05a6acd0b0bfdf75ee0cb7a50e518efd2d8c7e52.zip
(OLCUC): use 1<<9, since that's what hurd is already using
Diffstat (limited to 'bits/termios.h')
-rw-r--r--bits/termios.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bits/termios.h b/bits/termios.h
index aeb40e7643..d96a1a8bcc 100644
--- a/bits/termios.h
+++ b/bits/termios.h
@@ -97,7 +97,7 @@ struct termios
 # define ONOEOT	(1 << 3)	/* Discard EOT (^D) on output.  */
 #endif
 #ifdef __USE_GNU
-# define OLCUC	(1 << 8)	/* Translate lower case output to upper case */
+# define OLCUC	(1 << 9)	/* Translate lower case output to upper case */
 #endif
 
   /* Control modes.  */