static initialisers implicitly null out a variable (I think)

so take care of that (for global variables) to avoid them
moving from .bss to .data
This commit is contained in:
tg 2011-04-22 12:10:14 +00:00
parent 51607e17b2
commit c0e1e7645a
2 changed files with 4 additions and 4 deletions

4
edit.c
View File

@ -25,7 +25,7 @@
#include "sh.h" #include "sh.h"
__RCSID("$MirOS: src/bin/mksh/edit.c,v 1.208 2011/04/09 21:01:00 tg Exp $"); __RCSID("$MirOS: src/bin/mksh/edit.c,v 1.209 2011/04/22 12:10:13 tg Exp $");
/* /*
* in later versions we might use libtermcap for this, but since external * in later versions we might use libtermcap for this, but since external
@ -872,7 +872,7 @@ static char *killstack[KILLSIZE];
static int killsp, killtp; static int killsp, killtp;
static int x_curprefix; static int x_curprefix;
#ifndef MKSH_SMALL #ifndef MKSH_SMALL
static char *macroptr = NULL; /* bind key macro active? */ static char *macroptr; /* bind key macro active? */
#endif #endif
#if !MKSH_S_NOVI #if !MKSH_S_NOVI
static int cur_col; /* current column on line */ static int cur_col; /* current column on line */

4
lex.c
View File

@ -22,7 +22,7 @@
#include "sh.h" #include "sh.h"
__RCSID("$MirOS: src/bin/mksh/lex.c,v 1.145 2011/03/28 08:27:09 tg Exp $"); __RCSID("$MirOS: src/bin/mksh/lex.c,v 1.146 2011/04/22 12:10:14 tg Exp $");
/* /*
* states while lexing word * states while lexing word
@ -107,7 +107,7 @@ void yyskiputf8bom(void);
static int backslash_skip; static int backslash_skip;
static int ignore_backslash_newline; static int ignore_backslash_newline;
static struct sretrace_info *retrace_info = NULL; static struct sretrace_info *retrace_info;
short subshell_nesting_level = 0; short subshell_nesting_level = 0;
/* optimised getsc_bn() */ /* optimised getsc_bn() */