Mercurial > hg > xemacs-beta
comparison lib-src/movemail.c @ 388:aabb7f5b1c81 r21-2-9
Import from CVS: tag r21-2-9
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:09:42 +0200 |
parents | bbff43aa5eb7 |
children | 74fd4e045ea6 |
comparison
equal
deleted
inserted
replaced
387:f892a9d0bb8d | 388:aabb7f5b1c81 |
---|---|
77 | 77 |
78 extern char *optarg; | 78 extern char *optarg; |
79 extern int optind, opterr; | 79 extern int optind, opterr; |
80 | 80 |
81 #ifndef HAVE_STRERROR | 81 #ifndef HAVE_STRERROR |
82 static char * strerror (int errnum); | 82 char * strerror (int errnum); |
83 #endif /* HAVE_STRERROR */ | 83 #endif /* HAVE_STRERROR */ |
84 | 84 |
85 #ifdef MSDOS | 85 #ifdef MSDOS |
86 #undef access | 86 #undef access |
87 #endif /* MSDOS */ | 87 #endif /* MSDOS */ |
877 | 877 |
878 | 878 |
879 #endif /* MAIL_USE_POP */ | 879 #endif /* MAIL_USE_POP */ |
880 | 880 |
881 #ifndef HAVE_STRERROR | 881 #ifndef HAVE_STRERROR |
882 static char * | 882 char * |
883 strerror (int errnum) | 883 strerror (int errnum) |
884 { | 884 { |
885 extern char *sys_errlist[]; | 885 extern char *sys_errlist[]; |
886 extern int sys_nerr; | 886 extern int sys_nerr; |
887 | 887 |