Ignore:
Timestamp:
Nov 19, 2005, 4:58:38 PM (20 years ago)
Author:
bird
Message:

OS/2 changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ash/bltin/kill.c

    r2462 r2463  
    5858#ifdef SHELL            /* sh (aka ash) builtin */
    5959#define main killcmd
    60 #include "../../bin/sh/bltin/bltin.h"
    61 #endif /* SHELL */ 
     60#include "bltin/bltin.h"
     61#endif /* SHELL */
    6262
    6363static void nosig(char *);
     
    149149                                continue;
    150150                        }
    151                 } else 
     151                } else
    152152#endif
    153153                {
     
    207207        int termwidth = 80;
    208208
     209#ifdef TIOCGWINSZ
    209210        if (isatty(fileno(fp))) {
    210211                struct winsize win;
     
    212213                        termwidth = win.ws_col;
    213214        }
     215#else
     216#warning TIOCGWINSZ is not present.
     217#endif
    214218
    215219        for (len = 0, sig = 1; sig < NSIG; sig++) {
Note: See TracChangeset for help on using the changeset viewer.