shithub: riscv

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

View raw version
#include <termios.h>

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

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

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

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