diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
commit | d522f6eb0324008023fed0be4d046f3fc51b0356 (patch) | |
tree | 9ecf8345e3c3ff77a81ef2a20d84c6497533e804 /usr.bin/top | |
parent | 1b433a7e5b43fe0dec72e100525e31299629c117 (diff) |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'usr.bin/top')
-rw-r--r-- | usr.bin/top/machine.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/top/machine.h b/usr.bin/top/machine.h index 15671cad50a..62bcd6e4c1a 100644 --- a/usr.bin/top/machine.h +++ b/usr.bin/top/machine.h @@ -1,4 +1,4 @@ -/* $OpenBSD: machine.h,v 1.3 2002/02/16 21:27:55 millert Exp $ */ +/* $OpenBSD: machine.h,v 1.4 2002/02/17 19:42:33 millert Exp $ */ /* * This file defines the interface between top and the machine-dependent @@ -58,9 +58,8 @@ extern int display_init(struct statics *); extern int machine_init(struct statics *); extern char *format_header(char *); extern void get_system_info(struct system_info *); -extern caddr_t get_process_info __P((struct system_info *, - struct process_select *, - int (*)(const void *, const void *))); -extern char *format_next_process __P((caddr_t, char *(*)())); +extern caddr_t get_process_info(struct system_info *, struct process_select *, + int (*)(const void *, const void *)); +extern char *format_next_process(caddr_t, char *(*)()); extern int proc_compate(const void *, const void *); extern int proc_owner(pid_t); |