Files
ports/sysutils/whowatch/patches/patch-whowatch_h
T
naddy bbe9538a72 sysutils/whowatch: fix build with llvm22
Fix a type error in a configure snippet that broke with LLVM 22.
While here, sync up some prototypes to eliminate a slew of warnings.
2026-05-30 23:31:23 +00:00

17 lines
416 B
Plaintext

Index: whowatch.h
--- whowatch.h.orig
+++ whowatch.h
@@ -132,10 +132,10 @@ void page_up(struct window *, void (*)());
void key_home(struct window *, void (*)());
void key_end(struct window *, void (*)());
void update_load(void);
-void updatescr();
+void updatescr(struct window *w);
/* proctree.c */
-int update_tree();
+int update_tree(void del(void*));
void get_rows_cols(int *, int *);
/* procinfo.c */