Fix function prototype warnings for C23 compatibility

- Add proper function prototypes: fatal(), my_exit(), set_order()
- Fix function pointer types to match call sites: void (*func)(int)
- Remove conflicting localtime() declaration in rip.c
- Fix incorrect new_item() call in state.c (remove unused argument)

Result: Zero compilation warnings, C23 compatible.

See MODERNIZATION_LOG.md for detailed analysis.
This commit is contained in:
David Silva
2025-11-07 15:33:46 +00:00
parent b66c6659c9
commit a0c66a6078
7 changed files with 75 additions and 13 deletions

View File

@@ -567,7 +567,7 @@ char floor_at();
void flush_type();
int fight(coord *mp, THING *weap, bool thrown);
void fix_stick(THING *cur);
void fuse(void (*func)(), int arg, int time, int type);
void fuse(void (*func)(int), int arg, int time, int type);
bool get_dir();
int gethand();
void give_pack(THING *tp);
@@ -651,7 +651,7 @@ void show_map();
void show_win(char *message);
int sign(int nm);
int spread(int nm);
void start_daemon(void (*func)(), int arg, int type);
void start_daemon(void (*func)(int), int arg, int type);
void start_score();
void status();
int step_ok(int ch);
@@ -729,7 +729,7 @@ struct room *roomin(coord *cp);
extern struct delayed_action {
int d_type;
void (*d_func)();
void (*d_func)(int);
int d_arg;
int d_time;
} d_list[MAXDAEMONS];