Merge pull request #74 from tgree/macos_prototypes_fix

Fix function prototypes
This commit is contained in:
Joachim Wiberg 2025-04-06 13:34:10 +02:00 committed by GitHub
commit 9df73e8670
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -62,8 +62,8 @@ struct cmd commands[] = {
};
/* Forward declarations. */
char *stripwhite();
struct cmd *find_command();
char *stripwhite(char *string);
struct cmd *find_command(char *name);
/* ~/.fileman_history */
char *fileman_history;

View File

@ -1431,7 +1431,7 @@ void rl_clear_message(void)
/* Nothing to do atm. */
}
void rl_forced_update_display()
void rl_forced_update_display(void)
{
redisplay(0);
tty_flush();