/* 
 * $Id$
 *
 *     Header file of mr_err: a set of function manipulating errors
 *     Provided under the GPL v2
 */

#ifndef MR_ERR_H
#define MR_ERR_H

#include "mr_msg.h"

/* functions (public methods) */

extern inline void mr_exit(int errorcode, const char *message);
#define mr_log_exit(x,y) {mr_msg(0,y); mr_exit(x, y);}

#endif							/* MR_ERR_H */
