diff options
author | Rob Landley <rob@landley.net> | 2007-02-02 10:53:55 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-02-02 10:53:55 -0500 |
commit | 5a60e26fe8de2648689ff8c5659085b99f5891a0 (patch) | |
tree | 5275fc4463daece55b045bd9c6414e5294a4e492 /main.c | |
parent | bf284cbd49c99757ffb6367c4dfc584c01a3deab (diff) | |
download | toybox-5a60e26fe8de2648689ff8c5659085b99f5891a0.tar.gz |
Trim a redundant definition that confuses older compilers. (Regression testing
against Red Hat 9.)
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -22,6 +22,7 @@ struct toy_list toy_list[] = { // global context for this applet. struct toy_context toys; +union toy_union toy; char toybuf[4096]; struct toy_list *toy_find(char *name) |