Eliminate some -Wall warnings.
[bpt/emacs.git] / lib-src / movemail.c
CommitLineData
237e0016
RS
1/* movemail foo bar -- move file foo to file bar,
2 locking file foo the way /bin/mail respects.
39356651 3 Copyright (C) 1986, 1992, 1993, 1994 Free Software Foundation, Inc.
237e0016
RS
4
5This file is part of GNU Emacs.
6
93320c23
JA
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
39356651 9the Free Software Foundation; either version 2, or (at your option)
93320c23
JA
10any later version.
11
237e0016 12GNU Emacs is distributed in the hope that it will be useful,
93320c23
JA
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
237e0016 16
93320c23
JA
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
237e0016 20
63cf923d
RS
21/* Important notice: defining MAIL_USE_FLOCK or MAIL_USE_LOCKF *will
22 cause loss of mail* if you do it on a system that does not normally
23 use flock as its way of interlocking access to inbox files. The
24 setting of MAIL_USE_FLOCK and MAIL_USE_LOCKF *must agree* with the
25 system's own conventions. It is not a choice that is up to you.
08d0752f
RS
26
27 So, if your system uses lock files rather than flock, then the only way
28 you can get proper operation is to enable movemail to write lockfiles there.
29 This means you must either give that directory access modes
30 that permit everyone to write lockfiles in it, or you must make movemail
31 a setuid or setgid program. */
32
237e0016
RS
33/*
34 * Modified January, 1986 by Michael R. Gretzinger (Project Athena)
35 *
36 * Added POP (Post Office Protocol) service. When compiled -DPOP
37 * movemail will accept input filename arguments of the form
38 * "po:username". This will cause movemail to open a connection to
39 * a pop server running on $MAILHOST (environment variable). Movemail
40 * must be setuid to root in order to work with POP.
41 *
42 * New module: popmail.c
43 * Modified routines:
cfa191ff 44 * main - added code within #ifdef MAIL_USE_POP; added setuid (getuid ())
237e0016
RS
45 * after POP code.
46 * New routines in movemail.c:
47 * get_errmsg - return pointer to system error message
48 *
2e82e3c3
RS
49 * Modified August, 1993 by Jonathan Kamens (OpenVision Technologies)
50 *
51 * Move all of the POP code into a separate file, "pop.c".
52 * Use strerror instead of get_errmsg.
53 *
237e0016
RS
54 */
55
3b9ee819
RS
56#define NO_SHORTNAMES /* Tell config not to load remap.h */
57#include <../src/config.h>
237e0016
RS
58#include <sys/types.h>
59#include <sys/stat.h>
60#include <sys/file.h>
e2f9d9af 61#include <stdio.h>
237e0016 62#include <errno.h>
8ca83cfd 63#include <../src/syswait.h>
2e82e3c3
RS
64#ifdef MAIL_USE_POP
65#include "pop.h"
66#endif
237e0016 67
91cf09ac
RS
68#ifdef MSDOS
69#undef access
70#endif /* MSDOS */
71
237e0016
RS
72#ifdef USG
73#include <fcntl.h>
74#include <unistd.h>
4ec9a77a
RS
75#ifndef F_OK
76#define F_OK 0
77#define X_OK 1
78#define W_OK 2
79#define R_OK 4
80#endif
237e0016
RS
81#endif /* USG */
82
29beb080
RS
83#ifdef HAVE_UNISTD_H
84#include <unistd.h>
85#endif
86
237e0016
RS
87#ifdef XENIX
88#include <sys/locking.h>
89#endif
90
63cf923d
RS
91#ifdef MAIL_USE_LOCKF
92#define MAIL_USE_SYSTEM_LOCK
93#endif
94
95#ifdef MAIL_USE_FLOCK
96#define MAIL_USE_SYSTEM_LOCK
97#endif
98
4293ba7f
RS
99#ifdef MAIL_USE_MMDF
100extern int lk_open (), lk_close ();
101#endif
102
237e0016
RS
103/* Cancel substitutions made by config.h for Emacs. */
104#undef open
105#undef read
106#undef write
107#undef close
108
e97dd183 109#ifndef errno
237e0016 110extern int errno;
e97dd183 111#endif
e2f9d9af
DM
112char *strerror ();
113char *malloc ();
114
115void fatal ();
116void error ();
117void pfatal_with_name ();
118void pfatal_and_delete ();
119char *concat ();
120char *xmalloc ();
121int popmail ();
122int pop_retr ();
123int mbx_write ();
124int mbx_delimit_begin ();
125int mbx_delimit_end ();
237e0016
RS
126
127/* Nonzero means this is name of a lock file to delete on fatal error. */
128char *delete_lockname;
129
e2f9d9af 130int
237e0016
RS
131main (argc, argv)
132 int argc;
133 char **argv;
134{
135 char *inname, *outname;
136 int indesc, outdesc;
237e0016 137 int nread;
8ca83cfd 138 WAITTYPE status;
237e0016 139
63cf923d 140#ifndef MAIL_USE_SYSTEM_LOCK
237e0016
RS
141 struct stat st;
142 long now;
143 int tem;
144 char *lockname, *p;
906ad89d 145 char *tempname;
237e0016 146 int desc;
63cf923d 147#endif /* not MAIL_USE_SYSTEM_LOCK */
237e0016
RS
148
149 delete_lockname = 0;
150
151 if (argc < 3)
e2f9d9af
DM
152 {
153 fprintf (stderr, "Usage: movemail inbox destfile");
154 exit(1);
155 }
237e0016
RS
156
157 inname = argv[1];
158 outname = argv[2];
159
4293ba7f
RS
160#ifdef MAIL_USE_MMDF
161 mmdf_init (argv[0]);
162#endif
163
b1ce62a8 164 /* Check access to output file. */
237e0016
RS
165 if (access (outname, F_OK) == 0 && access (outname, W_OK) != 0)
166 pfatal_with_name (outname);
167
168 /* Also check that outname's directory is writeable to the real uid. */
169 {
91cf09ac 170 char *buf = (char *) xmalloc (strlen (outname) + 1);
e2f9d9af 171 char *p;
237e0016
RS
172 strcpy (buf, outname);
173 p = buf + strlen (buf);
174 while (p > buf && p[-1] != '/')
175 *--p = 0;
176 if (p == buf)
177 *p++ = '.';
178 if (access (buf, W_OK) != 0)
179 pfatal_with_name (buf);
180 free (buf);
181 }
182
183#ifdef MAIL_USE_POP
12a0565a 184 if (!strncmp (inname, "po:", 3))
237e0016
RS
185 {
186 int status; char *user;
187
12a0565a
JB
188 for (user = &inname[strlen (inname) - 1]; user >= inname; user--)
189 if (*user == ':')
190 break;
191
237e0016
RS
192 status = popmail (user, outname);
193 exit (status);
194 }
195
cfa191ff 196 setuid (getuid ());
237e0016
RS
197#endif /* MAIL_USE_POP */
198
b1ce62a8
RS
199 /* Check access to input file. */
200 if (access (inname, R_OK | W_OK) != 0)
201 pfatal_with_name (inname);
202
4293ba7f 203#ifndef MAIL_USE_MMDF
63cf923d 204#ifndef MAIL_USE_SYSTEM_LOCK
237e0016
RS
205 /* Use a lock file named /usr/spool/mail/$USER.lock:
206 If it exists, the mail file is locked. */
06000e3c
RS
207 /* Note: this locking mechanism is *required* by the mailer
208 (on systems which use it) to prevent loss of mail.
209
210 On systems that use a lock file, extracting the mail without locking
211 WILL occasionally cause loss of mail due to timing errors!
212
213 So, if creation of the lock file fails
214 due to access permission on /usr/spool/mail,
215 you simply MUST change the permission
216 and/or make movemail a setgid program
217 so it can create lock files properly.
218
219 You might also wish to verify that your system is one
220 which uses lock files for this purpose. Some systems use other methods.
221
222 If your system uses the `flock' system call for mail locking,
63cf923d 223 define MAIL_USE_SYSTEM_LOCK in config.h or the s-*.h file
06000e3c 224 and recompile movemail. If the s- file for your system
63cf923d 225 should define MAIL_USE_SYSTEM_LOCK but does not, send a bug report
06000e3c
RS
226 to bug-gnu-emacs@prep.ai.mit.edu so we can fix it. */
227
237e0016 228 lockname = concat (inname, ".lock", "");
3f628ebd
RS
229 tempname = (char *) xmalloc (strlen (inname) + strlen ("EXXXXXX") + 1);
230 strcpy (tempname, inname);
237e0016
RS
231 p = tempname + strlen (tempname);
232 while (p != tempname && p[-1] != '/')
233 p--;
234 *p = 0;
235 strcpy (p, "EXXXXXX");
236 mktemp (tempname);
cfa191ff 237 unlink (tempname);
237e0016
RS
238
239 while (1)
240 {
241 /* Create the lock file, but not under the lock file name. */
242 /* Give up if cannot do that. */
8ca83cfd 243 desc = open (tempname, O_WRONLY | O_CREAT | O_EXCL, 0666);
237e0016 244 if (desc < 0)
8ca83cfd 245 pfatal_with_name ("lock file--see source file lib-src/movemail.c");
237e0016
RS
246 close (desc);
247
248 tem = link (tempname, lockname);
cfa191ff 249 unlink (tempname);
237e0016
RS
250 if (tem >= 0)
251 break;
252 sleep (1);
253
254 /* If lock file is a minute old, unlock it. */
255 if (stat (lockname, &st) >= 0)
256 {
257 now = time (0);
258 if (st.st_ctime < now - 60)
cfa191ff 259 unlink (lockname);
237e0016
RS
260 }
261 }
262
263 delete_lockname = lockname;
63cf923d
RS
264#endif /* not MAIL_USE_SYSTEM_LOCK */
265#endif /* not MAIL_USE_MMDF */
237e0016 266
8ca83cfd
RS
267 if (fork () == 0)
268 {
d5216c20 269 setuid (getuid ());
8ca83cfd 270
63cf923d
RS
271#ifndef MAIL_USE_MMDF
272#ifdef MAIL_USE_SYSTEM_LOCK
8ca83cfd 273 indesc = open (inname, O_RDWR);
63cf923d 274#else /* if not MAIL_USE_SYSTEM_LOCK */
8ca83cfd 275 indesc = open (inname, O_RDONLY);
63cf923d 276#endif /* not MAIL_USE_SYSTEM_LOCK */
8ca83cfd
RS
277#else /* MAIL_USE_MMDF */
278 indesc = lk_open (inname, O_RDONLY, 0, 0, 10);
4293ba7f
RS
279#endif /* MAIL_USE_MMDF */
280
8ca83cfd
RS
281 if (indesc < 0)
282 pfatal_with_name (inname);
237e0016 283
cfa191ff 284#if defined (BSD) || defined (XENIX)
8ca83cfd
RS
285 /* In case movemail is setuid to root, make sure the user can
286 read the output file. */
287 /* This is desirable for all systems
288 but I don't want to assume all have the umask system call */
289 umask (umask (0) & 0333);
237e0016 290#endif /* BSD or Xenix */
8ca83cfd
RS
291 outdesc = open (outname, O_WRONLY | O_CREAT | O_EXCL, 0666);
292 if (outdesc < 0)
293 pfatal_with_name (outname);
63cf923d
RS
294#ifdef MAIL_USE_SYSTEM_LOCK
295#ifdef MAIL_USE_LOCKF
296 if (lockf (indesc, F_LOCK, 0) < 0) pfatal_with_name (inname);
297#else /* not MAIL_USE_LOCKF */
237e0016 298#ifdef XENIX
8ca83cfd 299 if (locking (indesc, LK_RLCK, 0L) < 0) pfatal_with_name (inname);
237e0016 300#else
8ca83cfd 301 if (flock (indesc, LOCK_EX) < 0) pfatal_with_name (inname);
237e0016 302#endif
63cf923d
RS
303#endif /* not MAIL_USE_LOCKF */
304#endif /* MAIL_USE_SYSTEM_LOCK */
237e0016 305
08564963 306 {
8ca83cfd
RS
307 char buf[1024];
308
309 while (1)
08564963 310 {
8ca83cfd
RS
311 nread = read (indesc, buf, sizeof buf);
312 if (nread != write (outdesc, buf, nread))
313 {
314 int saved_errno = errno;
315 unlink (outname);
316 errno = saved_errno;
317 pfatal_with_name (outname);
318 }
319 if (nread < sizeof buf)
320 break;
08564963 321 }
08564963 322 }
237e0016
RS
323
324#ifdef BSD
8ca83cfd
RS
325 if (fsync (outdesc) < 0)
326 pfatal_and_delete (outname);
237e0016
RS
327#endif
328
8ca83cfd
RS
329 /* Check to make sure no errors before we zap the inbox. */
330 if (close (outdesc) != 0)
331 pfatal_and_delete (outname);
237e0016 332
63cf923d 333#ifdef MAIL_USE_SYSTEM_LOCK
cfa191ff 334#if defined (STRIDE) || defined (XENIX)
8ca83cfd
RS
335 /* Stride, xenix have file locking, but no ftruncate. This mess will do. */
336 close (open (inname, O_CREAT | O_TRUNC | O_RDWR, 0666));
237e0016 337#else
8ca83cfd 338 ftruncate (indesc, 0L);
237e0016 339#endif /* STRIDE or XENIX */
63cf923d 340#endif /* MAIL_USE_SYSTEM_LOCK */
4293ba7f
RS
341
342#ifdef MAIL_USE_MMDF
8ca83cfd 343 lk_close (indesc, 0, 0, 0);
4293ba7f 344#else
8ca83cfd 345 close (indesc);
4293ba7f 346#endif
237e0016 347
63cf923d 348#ifndef MAIL_USE_SYSTEM_LOCK
e5f7ea68
RM
349 /* Delete the input file; if we can't, at least get rid of its
350 contents. */
e97dd183 351#ifdef MAIL_UNLINK_SPOOL
8ca83cfd
RS
352 /* This is generally bad to do, because it destroys the permissions
353 that were set on the file. Better to just empty the file. */
354 if (unlink (inname) < 0 && errno != ENOENT)
e97dd183 355#endif /* MAIL_UNLINK_SPOOL */
8ca83cfd 356 creat (inname, 0600);
63cf923d 357#endif /* not MAIL_USE_SYSTEM_LOCK */
8ca83cfd
RS
358
359 exit (0);
360 }
361
362 wait (&status);
363 if (!WIFEXITED (status))
364 exit (1);
365 else if (WRETCODE (status) != 0)
366 exit (WRETCODE (status));
367
63cf923d 368#if !defined (MAIL_USE_MMDF) && !defined (MAIL_USE_SYSTEM_LOCK)
4293ba7f 369 unlink (lockname);
63cf923d 370#endif /* not MAIL_USE_MMDF and not MAIL_USE_SYSTEM_LOCK */
e2f9d9af 371 return 0;
237e0016
RS
372}
373\f
374/* Print error message and exit. */
375
e2f9d9af 376void
237e0016
RS
377fatal (s1, s2)
378 char *s1, *s2;
379{
380 if (delete_lockname)
381 unlink (delete_lockname);
382 error (s1, s2);
383 exit (1);
384}
385
386/* Print error message. `s1' is printf control string, `s2' is arg for it. */
387
e2f9d9af 388void
b1ce62a8
RS
389error (s1, s2, s3)
390 char *s1, *s2, *s3;
237e0016 391{
e2f9d9af
DM
392 fprintf (stderr, "movemail: ");
393 fprintf (stderr, s1, s2, s3);
394 fprintf (stderr, "\n");
237e0016
RS
395}
396
e2f9d9af 397void
237e0016
RS
398pfatal_with_name (name)
399 char *name;
400{
e2f9d9af 401 char *s = concat ("", strerror (errno), " for %s");
237e0016
RS
402 fatal (s, name);
403}
404
e2f9d9af 405void
cfa191ff
RS
406pfatal_and_delete (name)
407 char *name;
408{
e2f9d9af 409 char *s = concat ("", strerror (errno), " for %s");
cfa191ff
RS
410 unlink (name);
411 fatal (s, name);
412}
413
237e0016
RS
414/* Return a newly-allocated string whose contents concatenate those of s1, s2, s3. */
415
416char *
417concat (s1, s2, s3)
418 char *s1, *s2, *s3;
419{
420 int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
421 char *result = (char *) xmalloc (len1 + len2 + len3 + 1);
422
423 strcpy (result, s1);
424 strcpy (result + len1, s2);
425 strcpy (result + len1 + len2, s3);
426 *(result + len1 + len2 + len3) = 0;
427
428 return result;
429}
430
431/* Like malloc but get fatal error if memory is exhausted. */
432
e97dd183 433char *
237e0016 434xmalloc (size)
e97dd183 435 unsigned size;
237e0016 436{
91cf09ac 437 char *result = (char *) malloc (size);
237e0016
RS
438 if (!result)
439 fatal ("virtual memory exhausted", 0);
440 return result;
441}
442\f
443/* This is the guts of the interface to the Post Office Protocol. */
444
445#ifdef MAIL_USE_POP
446
447#include <sys/socket.h>
448#include <netinet/in.h>
449#include <netdb.h>
450#include <stdio.h>
cecf0f21 451#include <pwd.h>
237e0016
RS
452
453#ifdef USG
454#include <fcntl.h>
455/* Cancel substitutions made by config.h for Emacs. */
456#undef open
457#undef read
458#undef write
459#undef close
460#endif /* USG */
461
462#define NOTOK (-1)
463#define OK 0
464#define DONE 1
465
466char *progname;
467FILE *sfi;
468FILE *sfo;
2e82e3c3
RS
469char ibuffer[BUFSIZ];
470char obuffer[BUFSIZ];
237e0016
RS
471char Errmsg[80];
472
b1ce62a8
RS
473popmail (user, outfile)
474 char *user;
475 char *outfile;
237e0016 476{
b1ce62a8 477 int nmsgs, nbytes;
b1ce62a8
RS
478 register int i;
479 int mbfi;
480 FILE *mbf;
2e82e3c3
RS
481 char *getenv ();
482 int mbx_write ();
483 PopServer server;
484 extern char *strerror ();
237e0016 485
2e82e3c3
RS
486 server = pop_open (0, user, 0, POP_NO_GETPASS);
487 if (! server)
b1ce62a8 488 {
2e82e3c3
RS
489 error (pop_error);
490 return (1);
237e0016
RS
491 }
492
2e82e3c3 493 if (pop_stat (server, &nmsgs, &nbytes))
b1ce62a8 494 {
2e82e3c3
RS
495 error (pop_error);
496 return (1);
237e0016
RS
497 }
498
b1ce62a8
RS
499 if (!nmsgs)
500 {
2e82e3c3
RS
501 pop_close (server);
502 return (0);
b1ce62a8
RS
503 }
504
505 mbfi = open (outfile, O_WRONLY | O_CREAT | O_EXCL, 0666);
506 if (mbfi < 0)
507 {
2e82e3c3
RS
508 pop_close (server);
509 error ("Error in open: %s, %s", strerror (errno), outfile);
510 return (1);
b1ce62a8
RS
511 }
512 fchown (mbfi, getuid (), -1);
513
514 if ((mbf = fdopen (mbfi, "w")) == NULL)
515 {
2e82e3c3
RS
516 pop_close (server);
517 error ("Error in fdopen: %s", strerror (errno));
518 close (mbfi);
519 unlink (outfile);
520 return (1);
b1ce62a8
RS
521 }
522
523 for (i = 1; i <= nmsgs; i++)
524 {
525 mbx_delimit_begin (mbf);
2e82e3c3 526 if (pop_retr (server, i, mbx_write, mbf) != OK)
b1ce62a8 527 {
2e82e3c3 528 error (Errmsg);
b1ce62a8 529 close (mbfi);
2e82e3c3 530 return (1);
237e0016 531 }
b1ce62a8
RS
532 mbx_delimit_end (mbf);
533 fflush (mbf);
2e82e3c3
RS
534 if (ferror (mbf))
535 {
536 error ("Error in fflush: %s", strerror (errno));
537 pop_close (server);
538 close (mbfi);
539 return (1);
540 }
237e0016
RS
541 }
542
2e82e3c3
RS
543 /* On AFS, a call to write only modifies the file in the local
544 * workstation's AFS cache. The changes are not written to the server
545 * until a call to fsync or close is made. Users with AFS home
546 * directories have lost mail when over quota because these checks were
547 * not made in previous versions of movemail. */
548
340ff9de 549#ifdef BSD
cfa191ff
RS
550 if (fsync (mbfi) < 0)
551 {
2e82e3c3
RS
552 error ("Error in fsync: %s", strerror (errno));
553 return (1);
cfa191ff 554 }
340ff9de 555#endif
cfa191ff
RS
556
557 if (close (mbfi) == -1)
558 {
2e82e3c3
RS
559 error ("Error in close: %s", strerror (errno));
560 return (1);
cfa191ff
RS
561 }
562
b1ce62a8
RS
563 for (i = 1; i <= nmsgs; i++)
564 {
2e82e3c3 565 if (pop_delete (server, i))
b1ce62a8 566 {
2e82e3c3
RS
567 error (pop_error);
568 pop_close (server);
569 return (1);
237e0016
RS
570 }
571 }
572
2e82e3c3 573 if (pop_quit (server))
b1ce62a8 574 {
2e82e3c3
RS
575 error (pop_error);
576 return (1);
237e0016 577 }
237e0016 578
2e82e3c3 579 return (0);
237e0016
RS
580}
581
2e82e3c3
RS
582pop_retr (server, msgno, action, arg)
583 PopServer server;
b1ce62a8 584 int (*action)();
237e0016 585{
2e82e3c3
RS
586 extern char *strerror ();
587 char *line;
588 int ret;
237e0016 589
2e82e3c3 590 if (pop_retrieve_first (server, msgno, &line))
b1ce62a8 591 {
2e82e3c3
RS
592 strncpy (Errmsg, pop_error, sizeof (Errmsg));
593 Errmsg[sizeof (Errmsg)-1] = '\0';
594 return (NOTOK);
237e0016
RS
595 }
596
2e82e3c3 597 while (! (ret = pop_retrieve_next (server, &line)))
b1ce62a8 598 {
2e82e3c3
RS
599 if (! line)
600 break;
601
602 if ((*action)(line, arg) != OK)
b1ce62a8 603 {
2e82e3c3
RS
604 strcpy (Errmsg, strerror (errno));
605 pop_close (server);
606 return (NOTOK);
237e0016
RS
607 }
608 }
237e0016 609
2e82e3c3 610 if (ret)
b1ce62a8 611 {
2e82e3c3
RS
612 strncpy (Errmsg, pop_error, sizeof (Errmsg));
613 Errmsg[sizeof (Errmsg)-1] = '\0';
614 return (NOTOK);
237e0016
RS
615 }
616
2e82e3c3 617 return (OK);
237e0016
RS
618}
619
2e82e3c3
RS
620/* Do this as a macro instead of using strcmp to save on execution time. */
621#define IS_FROM_LINE(a) ((a[0] == 'F') \
622 && (a[1] == 'r') \
623 && (a[2] == 'o') \
624 && (a[3] == 'm') \
625 && (a[4] == ' '))
237e0016 626
2e82e3c3 627int
b1ce62a8
RS
628mbx_write (line, mbf)
629 char *line;
630 FILE *mbf;
237e0016 631{
2e82e3c3
RS
632 if (IS_FROM_LINE (line))
633 {
634 if (fputc ('>', mbf) == EOF)
635 return (NOTOK);
636 }
637 if (fputs (line, mbf) == EOF)
638 return (NOTOK);
639 if (fputc (0x0a, mbf) == EOF)
640 return (NOTOK);
641 return (OK);
237e0016
RS
642}
643
2e82e3c3 644int
b1ce62a8
RS
645mbx_delimit_begin (mbf)
646 FILE *mbf;
237e0016 647{
2e82e3c3
RS
648 if (fputs ("\f\n0, unseen,,\n", mbf) == EOF)
649 return (NOTOK);
650 return (OK);
237e0016
RS
651}
652
b1ce62a8
RS
653mbx_delimit_end (mbf)
654 FILE *mbf;
237e0016 655{
2e82e3c3
RS
656 if (putc ('\037', mbf) == EOF)
657 return (NOTOK);
658 return (OK);
237e0016
RS
659}
660
661#endif /* MAIL_USE_POP */
e5f7ea68
RM
662\f
663#ifndef HAVE_STRERROR
664char *
665strerror (errnum)
666 int errnum;
667{
668 extern char *sys_errlist[];
669 extern int sys_nerr;
670
671 if (errnum >= 0 && errnum < sys_nerr)
672 return sys_errlist[errnum];
673 return (char *) "Unknown error";
674}
675
676#endif /* ! HAVE_STRERROR */