/* errors.h
 * Nicholas Ingolia
 * ingolia@mit.edu
 */

#ifndef _errors_h
#define _errors_h 1

void error(const char *errstr);

void *xmalloc(size_t);
char *xstrdup(const char *);

char *now_string(void);

#endif /* defined(_errors_h) */
