31 lines
629 B
C
31 lines
629 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 &= ~(IMAXBEL | 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;
|
|
t->c_cc[VMIN] = 1;
|
|
t->c_cc[VTIME] = 0;
|
|
}
|