hush/shell
Glenn L McGrath d3612178b7 Patch by Junio C Hamano to workaround a gcc compiler bug.
The construct certain vintages of GCC (the one I have trouble
with is 3.2.3) have trouble with looks like the following:

    static struct st a;
    static struct st *p = &a;
    struct st { int foo; };
    static void init(void) { a.foo = 0; }

The problem disappears if we move the struct declaration up to
let the compiler know the shape of the struct before the first
definition uses it, like this:

    struct st { int foo; }; /* this has been moved up */
    static struct st a;
    static struct st *p = &a;
    static void init(void) { a.foo = 0; }
2003-09-17 00:22:26 +00:00
..
ash.c Patch by Junio C Hamano to workaround a gcc compiler bug. 2003-09-17 00:22:26 +00:00
cmdedit.c Be entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize) 2003-09-15 08:33:45 +00:00
cmdedit.h Command line history changes, lastpatch_71 from Vladimir N. Oleynik 2002-12-09 11:10:40 +00:00
Config.in config option CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN must depend 2003-09-12 04:49:21 +00:00
hush.c Update a bunch of docs. Run a script to update my email addr. 2003-07-14 21:21:08 +00:00
lash.c Update a bunch of docs. Run a script to update my email addr. 2003-07-14 21:21:08 +00:00
Makefile Update a bunch of docs. Run a script to update my email addr. 2003-07-14 21:21:08 +00:00
Makefile.in Update a bunch of docs. Run a script to update my email addr. 2003-07-14 21:21:08 +00:00
msh.c move all "-/bin/sh" "/bin/sh" and "sh" to libbb/messages.c file as one 2003-09-02 02:36:18 +00:00