summaryrefslogtreecommitdiffstats
path: root/sys/sys/exec.h
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-03-19 20:18:42 +0000
committeralfred <alfred@FreeBSD.org>2002-03-19 20:18:42 +0000
commit3b2d03b60a11ce28e58a87212bcccedd306f2c81 (patch)
tree233cfc0a5493dd5fb7407b0b8be25bcdc426772d /sys/sys/exec.h
parent3f502bc0e38e05c234115d22c39f02e6a4ab4fcb (diff)
downloadFreeBSD-src-3b2d03b60a11ce28e58a87212bcccedd306f2c81.zip
FreeBSD-src-3b2d03b60a11ce28e58a87212bcccedd306f2c81.tar.gz
Remove __P
Diffstat (limited to 'sys/sys/exec.h')
-rw-r--r--sys/sys/exec.h10
1 files changed, 5 insertions, 5 deletions
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 <sys/cdefs.h>
-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
OpenPOWER on IntegriCloud