Ruby 3.0.5p211 (2022-11-24 revision ba5cf0f7c52d4d35cc6a173c89eda98ceffa2dcf)
strerror.c
Go to the documentation of this file.
1/* public domain rewrite of strerror(3) */
2
3#include "ruby/missing.h"
4
5extern int sys_nerr;
6extern char *sys_errlist[];
7
8static char msg[50];
9
10char *
12{
13 if (error <= sys_nerr && error > 0) {
14 return sys_errlist[error];
15 }
16 snprintf(msg, sizeof(msg), "Unknown error (%d)", error);
17 return msg;
18}
Prototype for *.c in ./missing, and for missing timeval struct.
char * strerror(int error)
Definition: strerror.c:11
char * sys_errlist[]
int sys_nerr
#define snprintf
Definition: subst.h:14
void error(const char *msg)
Definition: untgz.c:593