diff options
| author | Szabolcs Nagy <nsz@port70.net> | 2016-07-03 17:04:32 +0200 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2016-07-03 14:54:34 -0400 | 
| commit | 5ce901279ec8b51fd80fb33bdebbbe54553a6057 (patch) | |
| tree | 12fb9b67f9831e4c31f37f42de1adf73ded45517 /arch/powerpc64/bits | |
| parent | 8735a921d0242be0d7e6dbe0f76f79e09d4f06dd (diff) | |
| download | musl-5ce901279ec8b51fd80fb33bdebbbe54553a6057.tar.gz | |
add missing TIOC* macros to ioctl.h
these are defined in linux asm/ioctls.h.
(powerpc64 and powerpc bits/ioctl.h are now identical)
Diffstat (limited to 'arch/powerpc64/bits')
| -rw-r--r-- | arch/powerpc64/bits/ioctl.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/arch/powerpc64/bits/ioctl.h b/arch/powerpc64/bits/ioctl.h index 43839946..1424b2dc 100644 --- a/arch/powerpc64/bits/ioctl.h +++ b/arch/powerpc64/bits/ioctl.h @@ -101,9 +101,9 @@  #define TIOCGDEV	_IOR('T',0x32, unsigned int)  #define TIOCSIG		_IOW('T',0x36, int)  #define TIOCVHANGUP	0x5437 -#define TIOCGPKT	_IOR('T',0x38, int) -#define TIOCGPTLCK	_IOR('T',0x39, int) -#define TIOCGEXCL	_IOR('T',0x40, int) +#define TIOCGPKT	_IOR('T', 0x38, int) +#define TIOCGPTLCK	_IOR('T', 0x39, int) +#define TIOCGEXCL	_IOR('T', 0x40, int)  #define TIOCSERCONFIG	0x5453  #define TIOCSERGWILD	0x5454 | 
