aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/env.c
diff options
context:
space:
mode:
authorRoland McGrath1994-01-08 22:27:30 +0000
committerRoland McGrath1994-01-08 22:27:30 +0000
commit2771160004630733bcf39d020b50f296994ba6aa (patch)
tree060d69112c537abef555569b527a09739aaaf650 /lib-src/env.c
parente773d20a7b5dcdced6e7c3be71d1565d6ae3ba82 (diff)
downloademacs-2771160004630733bcf39d020b50f296994ba6aa.tar.gz
emacs-2771160004630733bcf39d020b50f296994ba6aa.zip
[! HAVE_STRERROR] (strerror): Define the function.
Diffstat (limited to 'lib-src/env.c')
-rw-r--r--lib-src/env.c15
1 files changed, 15 insertions, 0 deletions
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)
333 } 333 }
334 return 0; 334 return 0;
335} 335}
336
337#ifndef HAVE_STRERROR
338char *
339strerror (errnum)
340 int errnum;
341{
342 extern char *sys_errlist[];
343 extern int sys_nerr;
344
345 if (errnum >= 0 && errnum < sys_nerr)
346 return sys_errlist[errnum];
347 return (char *) "Unknown error";
348}
349
350#endif /* ! HAVE_STRERROR */