diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-05-18 01:51:45 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-05-18 01:51:45 +0000 |
commit | e747eb4c2248f8585b802296c3cccdf172482a6a (patch) | |
tree | aa98889a88f99a867bdf2df6398d0631087cca02 | |
parent | 7280f44d8e6238e35f7dbdfc931a9dc76b11398b (diff) |
remove prototypes with no matching function
-rw-r--r-- | usr.bin/top/display.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/usr.bin/top/display.h b/usr.bin/top/display.h index 29a74f8e00e..2a123474ff8 100644 --- a/usr.bin/top/display.h +++ b/usr.bin/top/display.h @@ -1,4 +1,4 @@ -/* $OpenBSD: display.h,v 1.16 2022/09/10 16:58:51 cheloha Exp $ */ +/* $OpenBSD: display.h,v 1.17 2024/05/18 01:51:44 jsg Exp $ */ /* * Top users/processes display for Unix @@ -36,20 +36,13 @@ /* prototypes */ int display_resize(void); void i_loadave(double *); -void u_loadave(int, double *); void i_timeofday(time_t *); void i_procstates(int, int *, int); -void u_procstates(int, int *); void i_cpustates(int64_t *, int *); -void u_cpustates(int64_t *); void i_memory(int *); -void u_memory(int *); void i_message(void); -void u_message(void); void i_header(char *); -void u_header(char *); void i_process(int, char *, int); -void u_process(int, char *, int); void u_endscreen(void); void display_header(int); void new_message(int, const char *, ...); |