#ifndef __ERROR_H #define __ERROR_H #ifdef __cplusplus extern "C" { #endif #define MAX_ERROR_MSG_SIZE PATH_MAX extern int errors; extern int warnings; extern void error( char *fmt, ... ); extern void warning( char *fmt, ... ); extern void no_space( void ); extern void unterminated_comment( void ); #ifdef __cplusplus } #endif #endif /* __ERROR_H */