Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/console-tools/resize.c

    r3232 r3621  
    1515
    1616#include "libbb.h"
     17#include "common_bufsiz.h"
    1718
    1819#define ESC "\033"
    1920
    20 #define old_termios_p ((struct termios*)&bb_common_bufsiz1)
     21#define old_termios_p ((struct termios*)bb_common_bufsiz1)
     22#define INIT_G() do { setup_common_bufsiz(); } while (0)
    2123
    2224static void
     
    3335    struct winsize w = { 0, 0, 0, 0 };
    3436    int ret;
     37
     38    INIT_G();
    3539
    3640    /* We use _stderr_ in order to make resize usable
Note: See TracChangeset for help on using the changeset viewer.