11 lines
166 B
C
11 lines
166 B
C
#ifndef _ERRORS_H
|
|
#define _ERRORS_H
|
|
|
|
#include "config.h"
|
|
|
|
extern char errbuf[ 1024 ];
|
|
extern char fixbuf[ 1024 ];
|
|
|
|
extern void fatal_exit();
|
|
|
|
#endif /* !_ERRORS_H */
|