| 1 | #ifndef _ERROR_H | 
|---|---|
| 2 | #include <misc/error.h> | 
| 3 | |
| 4 | #include <stdarg.h> | 
| 5 | |
| 6 | void | 
| 7 | __error_internal (int status, int errnum, const char *message, | 
| 8 | va_list args, unsigned int mode_flags); | 
| 9 | |
| 10 | void | 
| 11 | __error_at_line_internal (int status, int errnum, const char *file_name, | 
| 12 | unsigned int line_number, const char *message, | 
| 13 | va_list args, unsigned int mode_flags); | 
| 14 | |
| 15 | #endif | 
| 16 | 
