Diff for /freem/src/service.c between versions 1.9 and 1.11

version 1.9, 2025/03/24 01:54:09 version 1.11, 2025/03/24 02:00:30
Line 25 Line 25
  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.   *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
  *   *
  *   $Log$   *   $Log$
    *   Revision 1.11  2025/03/24 02:00:30  snw
    *   Work around some OS/2 incompatibilities in service.c
    *
    *   Revision 1.10  2025/03/24 01:55:46  snw
    *   Work around some OS/2 incompatibilities in service.c
    *
  *   Revision 1.9  2025/03/24 01:54:09  snw   *   Revision 1.9  2025/03/24 01:54:09  snw
  *   Work around some OS/2 incompatibilities in set_break and set_zbreak   *   Work around some OS/2 incompatibilities in set_break and set_zbreak
  *   *
Line 85  int scosgr (short att, short bwflag); Line 91  int scosgr (short att, short bwflag);
 #  if !defined(MSDOS)  #  if !defined(MSDOS)
 #    include <termio.h>  #    include <termio.h>
 #  endif  #  endif
   #  if defined(__OS2__)
   #    include <termios.h>
   #    define termio termios
   #  endif
 # endif  # endif
 #else  #else
 # include <termios.h>  # include <termios.h>
Line 987  end: Line 997  end:
 void writeHOME (char *text)                       void writeHOME (char *text)                     
 {  {
   
   #if !defined(__OS2__)    
     struct winsize terminal_window;      struct winsize terminal_window;
   #endif    
     static char initflag = TRUE;        /* initialisation flag */      static char initflag = TRUE;        /* initialisation flag */
     static char esc = 0;                /* esc processing flag */      static char esc = 0;                /* esc processing flag */
     static char dcs = 0;                /* device control processing flag */      static char dcs = 0;                /* device control processing flag */
Line 1048  void writeHOME (char *text) Line 1060  void writeHOME (char *text)
     * and the 'hardcopy function'      * and the 'hardcopy function'
     */      */
     if (initflag) {      if (initflag) {
           
   #if !defined(__OS2__)        
         /* TODO: why are we casting to void here? */          /* TODO: why are we casting to void here? */
         (void) ioctl(STDOUT_FILENO, TIOCGWINSZ, &terminal_window);          (void) ioctl(STDOUT_FILENO, TIOCGWINSZ, &terminal_window);
                   
         n_lines = terminal_window.ws_row;          n_lines = terminal_window.ws_row;
         n_columns = terminal_window.ws_col;          n_columns = terminal_window.ws_col;
   #else
           n_lines = 25;
           n_columns = 80;
   #endif
           
         screen = (struct vtstyp *) calloc (1, sizeof (struct vtstyp));          screen = (struct vtstyp *) calloc (1, sizeof (struct vtstyp));
   
         ris (screen);          ris (screen);

Removed from v.1.9  
changed lines
  Added in v.1.11


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