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.
 
 
 
 
 
 

15 lines
359 B

#ifndef _ERROR_H
#include <misc/error.h>
#include <stdarg.h>
void
__error_internal (int status, int errnum, const char *message,
va_list args, unsigned int mode_flags);
void
__error_at_line_internal (int status, int errnum, const char *file_name,
unsigned int line_number, const char *message,
va_list args, unsigned int mode_flags);
#endif