diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-20 05:48:58 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-20 05:48:58 +0000 |
commit | 61bf661405b71b867b513fdce9829fe2621814e2 (patch) | |
tree | 3d74fd60e2a8454afa80afb555ded6a9f0360780 /sys/i386/bios/apm.c | |
parent | 0a59f1223c856d6130a3ef3b5c5f27b2a6a2296f (diff) | |
download | FreeBSD-src-61bf661405b71b867b513fdce9829fe2621814e2.zip FreeBSD-src-61bf661405b71b867b513fdce9829fe2621814e2.tar.gz |
Remove __P.
Diffstat (limited to 'sys/i386/bios/apm.c')
-rw-r--r-- | sys/i386/bios/apm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/i386/bios/apm.c b/sys/i386/bios/apm.c index 9749e0c..a32a77b 100644 --- a/sys/i386/bios/apm.c +++ b/sys/i386/bios/apm.c @@ -48,12 +48,12 @@ #include <i386/apm/apm.h> /* Used by the apm_saver screen saver module */ -int apm_display __P((int newstate)); +int apm_display(int newstate); struct apm_softc apm_softc; -static void apm_resume __P((void)); +static void apm_resume(void); static int apm_bioscall(void); -static int apm_check_function_supported __P((u_int version, u_int func)); +static int apm_check_function_supported(u_int version, u_int func); static int apm_pm_func(u_long, void*, ...); @@ -404,7 +404,7 @@ apm_hook_disestablish(int apmh, struct apmhook *ah) apm_del_hook(&hook[apmh], ah); } -static int apm_record_event __P((struct apm_softc *, u_int)); +static int apm_record_event(struct apm_softc *, u_int); static void apm_processevent(void); static u_int apm_op_inprog = 0; |