mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Mark usage function as __dead2 in programs where it does not return
In most cases, usage does not return, so mark them as __dead2. For the cases where they do return, they have not been marked __dead2. Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/735
This commit is contained in:
parent
5762de7243
commit
6d09982145
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ typedef struct patch {
|
|||
|
||||
STAILQ_HEAD(patch_list, patch) patches;
|
||||
|
||||
static void usage(void);
|
||||
static void usage(void) __dead2;
|
||||
static void back_patch(void);
|
||||
static void output_code(void);
|
||||
static void output_listing(char *ifilename);
|
||||
|
|
|
|||
Loading…
Reference in a new issue