--- freem/src/service.c 2025/01/19 02:04:04 1.1 +++ freem/src/service.c 2025/03/09 15:20:18 1.6 @@ -16,7 +16,7 @@ * file and global locking * * - * Author: Serena Willis + * Author: Serena Willis * Copyright (C) 1998 MUG Deutschland * Copyright (C) 2020 Coherent Logic Development LLC * @@ -65,16 +65,30 @@ #include "events.h" long int tell (); -unsigned alarm (); -void ris (); - +void ris (struct vtstyp *scr); #ifdef SCO int scosgr (short att, short bwflag); #endif /* system services */ -#include +#if !defined(__APPLE__) && !defined(__gnu_hurd__) && !defined(EMSCRIPTEN) +# if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__AMIGA) +# include +# if !defined(__AMIGA) +# define TCGETA TIOCGETA +# define TCSETA TIOCSETA +# endif +# define termio termios +# else +# if !defined(MSDOS) +# include +# endif +# endif +#else +# include +#endif + #include /* search 'string' for occurence of 'pattrn' @@ -3352,7 +3366,7 @@ void write_t (short int col) } /* end of write_t() */ -void ontimo () +void ontimo (void) { /* handle timeout (for read) */ longjmp (sjbuf, 1); } /* end of ontimo() */