Modular SHell
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
msh/err.h

16 lines
316 B

#ifndef _ACRON_ERR_H
#define _ACRON_ERR_H
/* Helper error/error-ing functions, like die() and dying versions of memory
* allocating functions */
#include <stdlib.h>
void die(const char *, ...);
/* Erroring functions */
void *emalloc(size_t);
void *erealloc(void *, size_t);
char *estrdup(const char *);
#endif