diff options
author | Roland McGrath <roland@gnu.org> | 2003-09-09 06:44:48 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-09-09 06:44:48 +0000 |
commit | 416be7f049391ce421d9b12a2c3b81bb3cad9f58 (patch) | |
tree | c193750698736dca48e9907b58bb15056fb37097 /sysdeps/unix/sysv/linux/powerpc | |
parent | 2750c39c44ae8635983a86728ccd30f2d254a73b (diff) | |
download | glibc-416be7f049391ce421d9b12a2c3b81bb3cad9f58.tar.gz glibc-416be7f049391ce421d9b12a2c3b81bb3cad9f58.tar.xz glibc-416be7f049391ce421d9b12a2c3b81bb3cad9f58.zip |
2003-09-08 Roland McGrath <roland@frob.com>
* sysdeps/unix/sysv/linux/speed.c (cfsetospeed): Only set c_ospeed under [_HAVE_STRUCT_TERMIOS_C_OSPEED]. (cfsetispeed): Only set c_ispeed under [_HAVE_STRUCT_TERMIOS_C_ISPEED]. * sysdeps/unix/sysv/linux/bits/termios.h (_HAVE_STRUCT_TERMIOS_C_ISPEED, _HAVE_STRUCT_TERMIOS_C_OSPEED): Define. * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise. * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/bits/termios.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/termios.h b/sysdeps/unix/sysv/linux/powerpc/bits/termios.h index f7b89ae594..58c9882a5e 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/termios.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/termios.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1999, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1997,1999,2001,2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -40,6 +40,8 @@ struct termios { cc_t c_cc[NCCS]; /* control characters */ speed_t c_ispeed; /* input speed */ speed_t c_ospeed; /* output speed */ +#define _HAVE_STRUCT_TERMIOS_C_ISPEED 1 +#define _HAVE_STRUCT_TERMIOS_C_OSPEED 1 }; /* c_cc characters */ |