mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Mark global functions and/or variables in apm(8) static where possible.
This allows compilers and static analyzers to do more thorough analysis.
This commit is contained in:
parent
982e6e69cd
commit
6f344d60d5
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$");
|
|||
#define xl(a) ((a) & 0xff)
|
||||
#define APMERR(a) xh(a)
|
||||
|
||||
int cmos_wall = 0; /* True when wall time is in cmos clock, else UTC */
|
||||
static int cmos_wall = 0; /* True when wall time is in cmos clock, else UTC */
|
||||
|
||||
static void
|
||||
usage(void)
|
||||
|
|
|
|||
Loading…
Reference in a new issue