Eliminate a warning about unused static data.

This commit is contained in:
Gregory Nutt 2017-08-12 12:15:21 -06:00
parent 970e98a902
commit a063227e58

View File

@ -68,8 +68,11 @@ static char * const g_argv[NARGS+1] =
NULL
};
#ifndef CONFIG_DISABLE_ENVIRON
static const char g_varname[] = "VarName";
static const char g_varvalue[] = "VarValue";
#endif
static bool g_restarted;
/****************************************************************************