summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-01-08 22:27:30 +0000
committerRoland McGrath <roland@gnu.org>1994-01-08 22:27:30 +0000
commit2771160004630733bcf39d020b50f296994ba6aa (patch)
tree060d69112c537abef555569b527a09739aaaf650 /lib-src
parente773d20a7b5dcdced6e7c3be71d1565d6ae3ba82 (diff)
downloademacs-2771160004630733bcf39d020b50f296994ba6aa.tar.gz
[! HAVE_STRERROR] (strerror): Define the function.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/emacsclient.c15
-rw-r--r--lib-src/env.c15
-rw-r--r--lib-src/timer.c15
3 files changed, 45 insertions, 0 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index b28acb26da0..85d0bdebeb5 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -282,3 +282,18 @@ main (argc, argv)
#endif /* HAVE_SYSVIPC */
#endif /* HAVE_SOCKETS or HAVE_SYSVIPC */
+
+#ifndef HAVE_STRERROR
+char *
+strerror (errnum)
+ int errnum;
+{
+ extern char *sys_errlist[];
+ extern int sys_nerr;
+
+ if (errnum >= 0 && errnum < sys_nerr)
+ return sys_errlist[errnum];
+ return (char *) "Unknown error";
+}
+
+#endif /* ! HAVE_STRERROR */
diff --git a/lib-src/env.c b/lib-src/env.c
index 282a94069df..35532e0360d 100644
--- a/lib-src/env.c
+++ b/lib-src/env.c
@@ -333,3 +333,18 @@ myindex (str, c)
}
return 0;
}
+
+#ifndef HAVE_STRERROR
+char *
+strerror (errnum)
+ int errnum;
+{
+ extern char *sys_errlist[];
+ extern int sys_nerr;
+
+ if (errnum >= 0 && errnum < sys_nerr)
+ return sys_errlist[errnum];
+ return (char *) "Unknown error";
+}
+
+#endif /* ! HAVE_STRERROR */
diff --git a/lib-src/timer.c b/lib-src/timer.c
index 8676b196597..cb7c4c0b2b1 100644
--- a/lib-src/timer.c
+++ b/lib-src/timer.c
@@ -300,5 +300,20 @@ main (argc, argv)
for (;;)
pause ();
}
+
+#ifndef HAVE_STRERROR
+char *
+strerror (errnum)
+ int errnum;
+{
+ extern char *sys_errlist[];
+ extern int sys_nerr;
+
+ if (errnum >= 0 && errnum < sys_nerr)
+ return sys_errlist[errnum];
+ return (char *) "Unknown error";
+}
+
+#endif /* ! HAVE_STRERROR */
/* timer.c ends here */