diff options
author | phk <phk@FreeBSD.org> | 2002-10-16 08:57:14 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-10-16 08:57:14 +0000 |
commit | df5889681215452131c467679cd51691ca09ad66 (patch) | |
tree | 9c37698c5cf0d1845ecfae97b03744f4eb808d41 /sys/i386/bios | |
parent | 32a73ad530917a145974381a8afcf1c282de9687 (diff) | |
download | FreeBSD-src-df5889681215452131c467679cd51691ca09ad66.zip FreeBSD-src-df5889681215452131c467679cd51691ca09ad66.tar.gz |
Be consistent about functions being static.
Spotted by: FlexeLint.
Diffstat (limited to 'sys/i386/bios')
-rw-r--r-- | sys/i386/bios/apm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/bios/apm.c b/sys/i386/bios/apm.c index 4277432..5279873 100644 --- a/sys/i386/bios/apm.c +++ b/sys/i386/bios/apm.c @@ -533,7 +533,7 @@ apm_suspend(int state) apm_lastreq_notify(); } -void +static void apm_resume(void) { struct apm_softc *sc = &apm_softc; |