mirror of
https://github.com/fluencelabs/musl
synced 2025-04-24 23:02:14 +00:00
reindent powerpc's bits/termios.h to be consistent with other archs
This commit is contained in:
parent
b291e7ca9b
commit
64b6684ddd
@ -49,39 +49,37 @@ struct termios
|
|||||||
#define OPOST 0000001
|
#define OPOST 0000001
|
||||||
#define ONLCR 0000002
|
#define ONLCR 0000002
|
||||||
#define OLCUC 0000004
|
#define OLCUC 0000004
|
||||||
|
|
||||||
#define OCRNL 0000010
|
#define OCRNL 0000010
|
||||||
#define ONOCR 0000020
|
#define ONOCR 0000020
|
||||||
#define ONLRET 0000040
|
#define ONLRET 0000040
|
||||||
|
#define OFILL 0000100
|
||||||
|
#define OFDEL 0000200
|
||||||
|
#define NLDLY 0001400
|
||||||
|
#define NL0 0000000
|
||||||
|
#define NL1 0000400
|
||||||
|
#define NL2 0001000
|
||||||
|
#define NL3 0001400
|
||||||
|
#define TABDLY 0006000
|
||||||
|
#define TAB0 0000000
|
||||||
|
#define TAB1 0002000
|
||||||
|
#define TAB2 0004000
|
||||||
|
#define TAB3 0006000
|
||||||
|
#define CRDLY 0030000
|
||||||
|
#define CR0 0000000
|
||||||
|
#define CR1 0010000
|
||||||
|
#define CR2 0020000
|
||||||
|
#define CR3 0030000
|
||||||
|
#define FFDLY 0040000
|
||||||
|
#define FF0 0000000
|
||||||
|
#define FF1 0040000
|
||||||
|
#define BSDLY 0100000
|
||||||
|
#define BS0 0000000
|
||||||
|
#define BS1 0100000
|
||||||
|
|
||||||
#define OFILL 00000100
|
#define VTDLY 0200000
|
||||||
#define OFDEL 00000200
|
#define VT0 0000000
|
||||||
#define NLDLY 00001400
|
#define VT1 0200000
|
||||||
#define NL0 00000000
|
|
||||||
#define NL1 00000400
|
|
||||||
#define NL2 00001000
|
|
||||||
#define NL3 00001400
|
|
||||||
#define TABDLY 00006000
|
|
||||||
#define TAB0 00000000
|
|
||||||
#define TAB1 00002000
|
|
||||||
#define TAB2 00004000
|
|
||||||
#define TAB3 00006000
|
|
||||||
#define CRDLY 00030000
|
|
||||||
#define CR0 00000000
|
|
||||||
#define CR1 00010000
|
|
||||||
#define CR2 00020000
|
|
||||||
#define CR3 00030000
|
|
||||||
#define FFDLY 00040000
|
|
||||||
#define FF0 00000000
|
|
||||||
#define FF1 00040000
|
|
||||||
#define BSDLY 00100000
|
|
||||||
#define BS0 00000000
|
|
||||||
#define BS1 00100000
|
|
||||||
#define VTDLY 00200000
|
|
||||||
#define VT0 00000000
|
|
||||||
#define VT1 00200000
|
|
||||||
|
|
||||||
#define CBAUD 0000377
|
|
||||||
#define B0 0000000
|
#define B0 0000000
|
||||||
#define B50 0000001
|
#define B50 0000001
|
||||||
#define B75 0000002
|
#define B75 0000002
|
||||||
@ -98,8 +96,9 @@ struct termios
|
|||||||
#define B9600 0000015
|
#define B9600 0000015
|
||||||
#define B19200 0000016
|
#define B19200 0000016
|
||||||
#define B38400 0000017
|
#define B38400 0000017
|
||||||
#define EXTA B19200
|
#define EXTA 0000016
|
||||||
#define EXTB B38400
|
#define EXTB 0000017
|
||||||
|
|
||||||
#define B57600 00020
|
#define B57600 00020
|
||||||
#define B115200 00021
|
#define B115200 00021
|
||||||
#define B230400 00022
|
#define B230400 00022
|
||||||
@ -107,7 +106,6 @@ struct termios
|
|||||||
#define B500000 00024
|
#define B500000 00024
|
||||||
#define B576000 00025
|
#define B576000 00025
|
||||||
#define B921600 00026
|
#define B921600 00026
|
||||||
|
|
||||||
#define B1000000 00027
|
#define B1000000 00027
|
||||||
#define B1152000 00030
|
#define B1152000 00030
|
||||||
#define B1500000 00031
|
#define B1500000 00031
|
||||||
@ -118,35 +116,35 @@ struct termios
|
|||||||
#define B4000000 00036
|
#define B4000000 00036
|
||||||
#define BOTHER 00037
|
#define BOTHER 00037
|
||||||
|
|
||||||
|
#define CBAUD 00377
|
||||||
|
|
||||||
#define CSIZE 00001400
|
#define CSIZE 00001400
|
||||||
#define CS5 00000000
|
#define CS5 00000000
|
||||||
#define CS6 00000400
|
#define CS6 00000400
|
||||||
#define CS7 00001000
|
#define CS7 00001000
|
||||||
#define CS8 00001400
|
#define CS8 00001400
|
||||||
|
|
||||||
#define CSTOPB 00002000
|
#define CSTOPB 00002000
|
||||||
#define CREAD 00004000
|
#define CREAD 00004000
|
||||||
#define PARENB 00010000
|
#define PARENB 00010000
|
||||||
#define PARODD 00020000
|
#define PARODD 00020000
|
||||||
#define HUPCL 00040000
|
#define HUPCL 00040000
|
||||||
|
|
||||||
#define CLOCAL 00100000
|
#define CLOCAL 00100000
|
||||||
|
|
||||||
#define ISIG 0x00000080
|
#define ECHOKE 0x00000001
|
||||||
#define ICANON 0x00000100
|
|
||||||
#define XCASE 0x00004000
|
|
||||||
#define ECHO 0x00000008
|
|
||||||
#define ECHOE 0x00000002
|
#define ECHOE 0x00000002
|
||||||
#define ECHOK 0x00000004
|
#define ECHOK 0x00000004
|
||||||
|
#define ECHO 0x00000008
|
||||||
#define ECHONL 0x00000010
|
#define ECHONL 0x00000010
|
||||||
#define NOFLSH 0x80000000
|
|
||||||
#define TOSTOP 0x00400000
|
|
||||||
#define ECHOCTL 0x00000040
|
|
||||||
#define ECHOPRT 0x00000020
|
#define ECHOPRT 0x00000020
|
||||||
#define ECHOKE 0x00000001
|
#define ECHOCTL 0x00000040
|
||||||
|
#define ISIG 0x00000080
|
||||||
|
#define ICANON 0x00000100
|
||||||
|
#define IEXTEN 0x00000400
|
||||||
|
#define XCASE 0x00004000
|
||||||
|
#define TOSTOP 0x00400000
|
||||||
#define FLUSHO 0x00800000
|
#define FLUSHO 0x00800000
|
||||||
#define PENDIN 0x20000000
|
#define PENDIN 0x20000000
|
||||||
#define IEXTEN 0x00000400
|
#define NOFLSH 0x80000000
|
||||||
|
|
||||||
#define TCOOFF 0
|
#define TCOOFF 0
|
||||||
#define TCOON 1
|
#define TCOON 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user