Mercurial > emacs
diff lib-src/pop.c @ 26083:134b57acef68
Add support for large files. Merge glibc 2.1.2.
* b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
movemail.c, pop.c:
Do not include <stdlib.h>, as <config.h> does this now.
* b2m.c, emacsserver.c, etags.c, profile.c:
Include <config.h> before any system include files.
* emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
test-distrib.c:
(read, write, open, close): Do not undef.
* getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
(const): Do not define if HAVE_CONFIG_H; that's config.h's job.
* getopt.h: Adopt glibc 2.1.2.
| author | Paul Eggert <eggert@twinsun.com> |
|---|---|
| date | Tue, 19 Oct 1999 07:17:20 +0000 |
| parents | 8565fbac98d7 |
| children | 71b1a76cd64a |
line wrap: on
line diff
--- a/lib-src/pop.c Tue Oct 19 07:16:11 1999 +0000 +++ b/lib-src/pop.c Tue Oct 19 07:17:20 1999 +0000 @@ -1,5 +1,5 @@ /* pop.c: client routines for talking to a POP3-protocol post-office server - Copyright (c) 1991, 1993, 1996, 1997 Free Software Foundation, Inc. + Copyright (c) 1991, 1993, 1996, 1997, 1999 Free Software Foundation, Inc. Written by Jonathan Kamens, jik@security.ov.com. This file is part of GNU Emacs. @@ -28,14 +28,6 @@ #ifdef MAIL_USE_POP -#ifdef HAVE_CONFIG_H -/* Cancel these substitutions made in config.h */ -#undef open -#undef read -#undef write -#undef close -#endif - #include <sys/types.h> #ifdef WINDOWSNT #include "ntlib.h" @@ -76,9 +68,6 @@ #include <string.h> #define index strchr #endif -#ifdef STDC_HEADERS -#include <stdlib.h> -#endif #ifdef HAVE_UNISTD_H #include <unistd.h> #endif
