Diff for /freem/src/service.c between versions 1.2 and 1.6

version 1.2, 2025/02/25 18:53:14 version 1.6, 2025/03/09 15:20:18
Line 16 Line 16
  *    file and global locking   *    file and global locking
  *   *
  *     *  
  *   Author: Serena Willis <jpw@coherent-logic.com>   *   Author: Serena Willis <snw@coherent-logic.com>
  *    Copyright (C) 1998 MUG Deutschland   *    Copyright (C) 1998 MUG Deutschland
  *    Copyright (C) 2020 Coherent Logic Development LLC   *    Copyright (C) 2020 Coherent Logic Development LLC
  *   *
Line 65 Line 65
 #include "events.h"  #include "events.h"
   
 long int tell ();  long int tell ();
 unsigned alarm ();  void ris (struct vtstyp *scr);
 void    ris ();  
   
   
 #ifdef SCO  #ifdef SCO
 int scosgr (short att, short bwflag);  int scosgr (short att, short bwflag);
 #endif  #endif
   
 /* system services */  /* system services */
 #if defined(__sun) || defined(__FreeBSD__) || defined(__NetBSD__)  #if !defined(__APPLE__) && !defined(__gnu_hurd__) && !defined(EMSCRIPTEN)
 # include <termio.h>  # if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__AMIGA)
   #  include <termios.h>
   #  if !defined(__AMIGA)
   #   define TCGETA TIOCGETA
   #   define TCSETA TIOCSETA
   #  endif
   #  define termio termios
   # else
   #  if !defined(MSDOS)
   #    include <termio.h>
   #  endif
   # endif
 #else  #else
 # include <termios.h>  # include <termios.h>
 #endif  #endif
   
 #include <fcntl.h>  #include <fcntl.h>
   
 /* search 'string' for occurence of 'pattrn'  /* search 'string' for occurence of 'pattrn'
Line 3356  void write_t (short int col) Line 3366  void write_t (short int col)
   
 }                                       /* end of write_t() */  }                                       /* end of write_t() */
   
 void ontimo ()  void ontimo (void)
 {                                       /* handle timeout (for read) */  {                                       /* handle timeout (for read) */
     longjmp (sjbuf, 1);      longjmp (sjbuf, 1);
 }                                       /* end of ontimo() */  }                                       /* end of ontimo() */

Removed from v.1.2  
changed lines
  Added in v.1.6


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>