fix bad inline usage

This commit is contained in:
Emile Clark-Boman 2025-09-11 17:37:01 +10:00
parent a04cc6a6e5
commit 1f26441c71
3 changed files with 15 additions and 10 deletions

View file

@ -15,9 +15,11 @@ enum crs_termmode {
TMODE_NORAW,
};
int termmode(enum crs_termmode mode);
int termmode(const enum crs_termmode mode);
void init_ncurses(void);
WINDOW *init_window(int x, int y, int width, int height);
WINDOW *init_window(const int x, const int y, const int width,
const int height);
WINDOW *root_window(void);
#endif /* DORNE_CURSE_H */