shithub: riscv

ref: 8188b4f4f0e07b6669e6ae3c6c1099af917eaab4
dir: /sys/src/ape/lib/ap/plan9/cfgetospeed.c/

View raw version
#include <termios.h>

speed_t
cfgetospeed(const struct termios *)
{
	return B0;
}

int
cfsetospeed(struct termios *, speed_t)
{
	return 0;
}

speed_t
cfgetispeed(const struct termios *)
{
	return B0;
}

int
cfsetispeed(struct termios *, speed_t)
{
	return 0;
}