fixed for current libs...still need to compile with -std=c90

This commit is contained in:
2023-06-28 23:03:46 -07:00
parent 69d6b16e47
commit ff6480acbd

View File

@@ -11,6 +11,7 @@
#include "portable.h"
#include "common.h"
#define __USE_MISC
#if USE_STTY == TERMIO
# include <termio.h>
# include <sys/termio.h>
@@ -636,8 +637,8 @@ static struct bauds {
struct s_term_dat {
char *name;
uint or_dat;
uint and_dat;
uint8_t or_dat;
uint8_t and_dat;
};
#define FLAGS(X) { #X, X , 0 }, { "-" #X, 0, X }