mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
bbe9538a72
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.
17 lines
416 B
Plaintext
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 */
|