summaryrefslogtreecommitdiff
path: root/release/src/router/ipupdate/error.h
blob: 7de26eda7a35c3526bd9ba5acaa1d7bc8872b8e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _ERROR_H
#define _ERROR_H

#if HAVE_STRERROR
extern int errno;
#  define error_string strerror(errno)
#elif HAVE_SYS_ERRLIST
extern const char *const sys_errlist[];
extern int errno;
#  define error_string (sys_errlist[errno])
#else
#  define error_string "error message not found"
#endif

#endif