blob: bdb1df36431c836177adef42e0c164b35975edf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#if 0
#include <errno.h>
#include <stdio.h>
#include <string.h>
# define __LONGEST_STRERR 64 /* FIXME */
/** convert error number to string **/
char * strerror(int errnum)
{
static char errstr[__LONGEST_STRERR+1];
switch (errnum) {
#include "_strerror.h"
default:
sprintf(errstr, "unknown error [%d]", errnum);
break;
}
/*
RETURN_ALWAYS(a pointer to the message string);
*/
return errstr;
}
/***
converts the error number ARGUMENT(errnum) to an error message
string. The string returned should not be modified, and may be overwritten by
subsequent calls.
***/
/*
STDC(1)
*/
#endif
|