about summary refs log tree commit diff
path: root/include/error.h
blob: 4db67cba903688f142c05773fdd65d7e32462113 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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) __COLD;

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) __COLD;

#endif