1#define die(msg) \
2 do { perror(msg); exit(EXIT_FAILURE); } while (0)
3
4char *estrdup(char *s);
5void *emalloc(size_t size);
Dirty interpreter for the limp programming language in C
git clone https://git.8pit.net/climp.git
1#define die(msg) \
2 do { perror(msg); exit(EXIT_FAILURE); } while (0)
3
4char *estrdup(char *s);
5void *emalloc(size_t size);