rogue4: add more function declarations.

This commit is contained in:
John "Elwin" Edwards 2016-01-28 18:55:47 -05:00
parent c1d6a6af6a
commit 0f87d5b4d8
2 changed files with 30 additions and 18 deletions

View file

@ -78,6 +78,18 @@ extern bool got_genocide;
#define O_BINARY 0
#endif
extern int md_erasechar(void);
extern FILE *md_fdopen(int fd, char *mode);
extern int md_fileno(FILE *fp);
extern char *md_getusername(int uid);
extern char *md_gethomedir();
extern int md_getuid(void);
extern void md_ignore_signals(void);
extern void md_init(void);
extern int md_killchar(void);
extern void md_normaluser(void);
extern int md_readchar(WINDOW *win);
extern int md_shellescape(void);
extern void md_sleep(int s);
extern int md_unlink(char *file);
extern int md_unlink_open_file(char *file, int inf);