diff options
author | David Schleef <ds@schleef.org> | 2001-05-25 23:23:41 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2001-05-25 23:23:41 +0000 |
commit | 5b7f7988afbc2940d82f7f3cc7a57ae24a175d79 (patch) | |
tree | f6a653ba9d105d162725f74d3e09d3adbd21d905 /libc/sysdeps/linux/powerpc/bits/termios.h | |
parent | 6e72ced7e75c9977390ce89c5edc07efde05fa7c (diff) |
Added powerpc-specific mmap syscall, 'cause we're special.
Diffstat (limited to 'libc/sysdeps/linux/powerpc/bits/termios.h')
-rw-r--r-- | libc/sysdeps/linux/powerpc/bits/termios.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/powerpc/bits/termios.h b/libc/sysdeps/linux/powerpc/bits/termios.h index a5ba1d258..adaeb642d 100644 --- a/libc/sysdeps/linux/powerpc/bits/termios.h +++ b/libc/sysdeps/linux/powerpc/bits/termios.h @@ -25,15 +25,16 @@ typedef unsigned char cc_t; typedef unsigned int speed_t; typedef unsigned int tcflag_t; -#define NCCS 32 +/* note: this is fixed to be the same as the kernel, not glibc */ +#define NCCS 19 struct termios { tcflag_t c_iflag; /* input mode flags */ tcflag_t c_oflag; /* output mode flags */ tcflag_t c_cflag; /* control mode flags */ tcflag_t c_lflag; /* local mode flags */ - cc_t c_line; /* line discipline */ cc_t c_cc[NCCS]; /* control characters */ + cc_t c_line; /* line discipline */ speed_t c_ispeed; /* input speed */ speed_t c_ospeed; /* output speed */ }; |