mirror of
https://github.com/troglobit/editline.git
synced 2025-05-06 04:21:24 +08:00
Merge pull request #74 from tgree/macos_prototypes_fix
Fix function prototypes
This commit is contained in:
commit
9df73e8670
@ -62,8 +62,8 @@ struct cmd commands[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* Forward declarations. */
|
/* Forward declarations. */
|
||||||
char *stripwhite();
|
char *stripwhite(char *string);
|
||||||
struct cmd *find_command();
|
struct cmd *find_command(char *name);
|
||||||
|
|
||||||
/* ~/.fileman_history */
|
/* ~/.fileman_history */
|
||||||
char *fileman_history;
|
char *fileman_history;
|
||||||
|
@ -1431,7 +1431,7 @@ void rl_clear_message(void)
|
|||||||
/* Nothing to do atm. */
|
/* Nothing to do atm. */
|
||||||
}
|
}
|
||||||
|
|
||||||
void rl_forced_update_display()
|
void rl_forced_update_display(void)
|
||||||
{
|
{
|
||||||
redisplay(0);
|
redisplay(0);
|
||||||
tty_flush();
|
tty_flush();
|
||||||
|
Loading…
Reference in New Issue
Block a user