blob: ca7aaec6279f552c5144bb3b5ed7918be309f474 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef SYS_H
#define SYS_H
extern void info(const char *fmt, ...);
extern void die(const char *fmt, ...);
extern void *read_entire_file(const char *filename);
extern const char *get_bin_dir(void);
#endif
|