From 3b2d03b60a11ce28e58a87212bcccedd306f2c81 Mon Sep 17 00:00:00 2001 From: alfred Date: Tue, 19 Mar 2002 20:18:42 +0000 Subject: Remove __P --- sys/sys/exec.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sys/sys/exec.h') diff --git a/sys/sys/exec.h b/sys/sys/exec.h index 58e1c65..66d2f7b 100644 --- a/sys/sys/exec.h +++ b/sys/sys/exec.h @@ -66,7 +66,7 @@ struct ps_strings { struct image_params; struct execsw { - int (*ex_imgact) __P((struct image_params *)); + int (*ex_imgact)(struct image_params *); const char *ex_name; }; @@ -75,11 +75,11 @@ struct execsw { #ifdef _KERNEL #include -int exec_map_first_page __P((struct image_params *)); -void exec_unmap_first_page __P((struct image_params *)); +int exec_map_first_page(struct image_params *); +void exec_unmap_first_page(struct image_params *); -int exec_register __P((const struct execsw *)); -int exec_unregister __P((const struct execsw *)); +int exec_register(const struct execsw *); +int exec_unregister(const struct execsw *); /* * note: name##_mod cannot be const storage because the -- cgit v1.1