2015-08-04 10:51 GMT+02:00 Edward Tomasz Napierala <tr...@freebsd.org>:
>   Mark vgonel() as static.  It was already declared static earlier;
>   no idea why compilers don't warn about this.

That's because according to the standard, those keywords are meant to pile up:

static void foo(void);
_Noreturn void foo(void);
void foo(void) {
  ...
}

is the same as:

static _Noreturn void foo(void) {
  ...
}

-- 
Ed Schouten <e...@nuxi.nl>
Nuxi, 's-Hertogenbosch, the Netherlands
KvK/VAT number: 62051717
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to