sim/erc32: Insert void parameter

Clang generates a warning if there is a function declaration/definition
with zero arguments.  Such declarations/definitions without a prototype (an
argument list) are deprecated forms of indefinite arguments
("-Wdeprecated-non-prototype").  On the default configuration, it causes a
build failure (unless "--disable-werror" is specified).

This commit replaces () with (void) to avoid this warning.
This commit is contained in:
Tsukasa OI
2022-09-24 09:16:57 +00:00
parent 58d8e5fab3
commit dc4e697f2f

View File

@ -298,7 +298,7 @@ disp_reg(struct pstate *sregs, char *reg)
#ifdef ERRINJ
void
errinj()
errinj (void)
{
int err;
@ -322,7 +322,7 @@ errinj()
}
void
errinjstart()
errinjstart (void)
{
if (errper) event(errinj, 0, (random()%errper));
}
@ -855,7 +855,7 @@ event(void (*cfunc) (), int32_t arg, uint64_t delta)
#if 0 /* apparently not used */
void
stop_event()
stop_event(void)
{
}
#endif