diff options
Diffstat (limited to 'src/port/strerror.c')
-rw-r--r-- | src/port/strerror.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/port/strerror.c b/src/port/strerror.c new file mode 100644 index 00000000000..b878388ea25 --- /dev/null +++ b/src/port/strerror.c @@ -0,0 +1,31 @@ +/* $Id: strerror.c,v 1.1 2002/07/18 04:13:59 momjian Exp $ */ + +/* + * strerror - map error number to descriptive string + * + * This version is obviously somewhat Unix-specific. + * + * based on code by Henry Spencer + * modified for ANSI by D'Arcy J.M. Cain + */ + +#include <string.h> +#include <stdio.h> +#include <errno.h> + +extern const char *const sys_errlist[]; +extern int sys_nerr; + +const char * +strerror(int errnum) +{ + static char buf[24]; + + if (errnum < 0 || errnum > sys_nerr) + { + sprintf(buf, "unknown error %d", errnum); + return buf; + } + + return sys_errlist[errnum]; +} |