29 lines
556 B
C
29 lines
556 B
C
#include <sys/termios.h>
|
|
|
|
#include <math.h>
|
|
#include <setjmp.h>
|
|
#include <stdarg.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "scheme.h"
|
|
|
|
char *get_exename(char *buf, size_t size)
|
|
{
|
|
(void)buf;
|
|
(void)size;
|
|
return NULL;
|
|
}
|
|
|
|
void cfmakeraw(struct termios *t)
|
|
{
|
|
t->c_iflag &=
|
|
~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON);
|
|
t->c_oflag &= ~OPOST;
|
|
t->c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
|
|
t->c_cflag &= ~(CSIZE | PARENB);
|
|
t->c_cflag |= CS8;
|
|
}
|