blob: 1e3157d8399f6ec1023466948fe05c94839959f2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>
int set_interface_attribs (int fd, int speed, int parity);
void set_blocking (int fd, int should_block);
|