19 lines
526 B
C
19 lines
526 B
C
#include "rogue.h"
|
|
#include "pathnames.h"
|
|
|
|
void md_slurp(void);
|
|
void md_heed_signals(void);
|
|
void md_ignore_signals(void);
|
|
int md_get_file_id(const char *fname);
|
|
int md_link_count(const char *fname);
|
|
void md_gct(struct rogue_time *rt_buf);
|
|
void md_gfmt(const char *fname, struct rogue_time *rt_buf);
|
|
boolean md_df(const char *fname);
|
|
void md_sleep(int nsecs);
|
|
char *md_getenv(const char *name);
|
|
void *md_malloc(size_t n);
|
|
int md_gseed(void);
|
|
void md_exit(int status);
|
|
void md_lock(boolean l);
|
|
void md_shell(const char *shell);
|