mdev: Rob's #if forest removal

*: remove superfluous conts in "f(type *const param)"
This commit is contained in:
Denis Vlasenko
2009-04-19 01:27:20 +00:00
parent 885b6f29ae
commit c7cc5a9432
7 changed files with 141 additions and 173 deletions

View File

@ -521,8 +521,8 @@ static void zero_out_var(var * vp)
memset(vp, 0, sizeof(*vp));
}
static void syntax_error(const char *const message) NORETURN;
static void syntax_error(const char *const message)
static void syntax_error(const char *message) NORETURN;
static void syntax_error(const char *message)
{
bb_error_msg_and_die("%s:%i: %s", g_progname, g_lineno, message);
}