summaryrefslogtreecommitdiff
path: root/missing/strerror.c
blob: 023935a1ff65ccd52ed37ce650937635a5ad5abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* public domain rewrite of strerror(3) */

extern int sys_nerr;
extern char *sys_errlist[];

static char msg[50];

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