File: strerror.c

package info (click to toggle)
netstd 3.07-7slink.3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 6,312 kB
  • ctags: 9,027
  • sloc: ansic: 72,107; cpp: 6,144; makefile: 1,650; yacc: 1,614; sh: 1,164; perl: 308; awk: 46
file content (21 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * strerror() - for those systems that don't have it yet.
 * Doing it this way avoids yet another ifdef...
 */

/* These are part of the C library. (See perror.3) */
extern char *sys_errlist[];
extern int sys_nerr;

static char errmsg[80];

char *
strerror(en)
	int en;
{
	if ((0 <= en) && (en < sys_nerr))
		return sys_errlist[en];

	sprintf(errmsg, "Error %d", en);
	return errmsg;
}