After Charles-Antoine Gauthier <charles.gauthier@nrc.ca> spotted that the

prototype for tcsendbreak() was missing, Joel noticed that others were as
well and added them.
This commit is contained in:
Joel Sherrill
2000-03-21 15:36:48 +00:00
parent d6b047703d
commit d56669456a

View File

@@ -174,9 +174,15 @@ struct termios {
#define TCSADRAIN 1
#define TCSAFLUSH 2
int tcdrain(int);
int tcflow(int, int);
int tcflush(int, int);
int tcgetattr(int, struct termios *);
int tcsetattr(int, int, struct termios *);
int tcdrain(int);
pid_t tcgetprgrp(int);
int tcsetprgrp(int, pid_t);
int tcsendbreak(int, int);
speed_t cfgetospeed(const struct termios *tp);
int cfsetospeed(struct termios *tp, speed_t speed);
speed_t cfgetispeed(const struct termios *tp);