summaryrefslogtreecommitdiff
path: root/missing/strerror.c
blob: 44013b3892d1ee06da17242699b29f3ff5850fe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * strerror.c --- Map an integer error number into a printable string.
 */

extern int sys_nerr;
extern char *sys_errlist[];

static char msg[50];

char *
strerror(error)
    int error;
{
    if ((error <= sys_nerr) && (error > 0)) {
	return sys_errlist[error];
    }
    sprintf (msg, "Unknown error (%d)", error);
    return msg;
}