Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ports/linux/termios2.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
#define TERMIOS2_H

#define termios asmtermios /*avoid conflicts with others including termios.h*/
/* for musl def TCGETS2 in asm-generic/ioctls.h */
/* needs (int)sizeof(t) in _IOWR */
/* asm-generic/ioctl.h */
/* libc int ioctl (int, unsigned long int, ...) */
/* musl int ioctl (int, int, ...) */
#include <asm/ioctls.h>
#include <asm/termbits.h>
#undef termios

Expand Down
Loading