blob: c3586ecb0a005a10d33ec79a6bbf5a6a0892a624 (
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
40
41
42
43
44
45
46
47
48
49
|
/***********************************************************************/
/* */
/* Caml Special Light */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1995 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
/* $Id$ */
#include <errno.h>
#include <mlvalues.h>
#include <alloc.h>
extern int error_table[];
#ifdef HAS_STRERROR
extern char * strerror();
value unix_error_message(err)
value err;
{
int errnum;
errnum = error_table[Int_val(err)];
return copy_string(strerror(errnum));
}
#else
extern int sys_nerr;
extern char *sys_errlist[];
value unix_error_message(err)
value err;
{
int errnum;
errnum = error_table[Int_val(err)];
if (errnum < 0 || errnum >= sys_nerr) {
return copy_string("Unknown error");
} else {
return copy_string(sys_errlist[errnum]);
}
}
#endif
|