diff options
| author | Roland McGrath | 1994-01-08 22:27:30 +0000 |
|---|---|---|
| committer | Roland McGrath | 1994-01-08 22:27:30 +0000 |
| commit | 2771160004630733bcf39d020b50f296994ba6aa (patch) | |
| tree | 060d69112c537abef555569b527a09739aaaf650 /lib-src/timer.c | |
| parent | e773d20a7b5dcdced6e7c3be71d1565d6ae3ba82 (diff) | |
| download | emacs-2771160004630733bcf39d020b50f296994ba6aa.tar.gz emacs-2771160004630733bcf39d020b50f296994ba6aa.zip | |
[! HAVE_STRERROR] (strerror): Define the function.
Diffstat (limited to 'lib-src/timer.c')
| -rw-r--r-- | lib-src/timer.c | 15 |
1 files changed, 15 insertions, 0 deletions
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) | |||
| 300 | for (;;) | 300 | for (;;) |
| 301 | pause (); | 301 | pause (); |
| 302 | } | 302 | } |
| 303 | |||
| 304 | #ifndef HAVE_STRERROR | ||
| 305 | char * | ||
| 306 | strerror (errnum) | ||
| 307 | int errnum; | ||
| 308 | { | ||
| 309 | extern char *sys_errlist[]; | ||
| 310 | extern int sys_nerr; | ||
| 311 | |||
| 312 | if (errnum >= 0 && errnum < sys_nerr) | ||
| 313 | return sys_errlist[errnum]; | ||
| 314 | return (char *) "Unknown error"; | ||
| 315 | } | ||
| 316 | |||
| 317 | #endif /* ! HAVE_STRERROR */ | ||
| 303 | 318 | ||
| 304 | /* timer.c ends here */ | 319 | /* timer.c ends here */ |