aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorKim F. Storm2003-01-05 23:38:59 +0000
committerKim F. Storm2003-01-05 23:38:59 +0000
commit1cb12638f3a6562652e0ae3f1daeab60f7590b89 (patch)
tree7976cb03e3c54148d7cb626d0f1ccd4dbc5b7f37 /lib-src
parent207aa3ffcbaa924382620c5974644cbf6670f032 (diff)
downloademacs-1cb12638f3a6562652e0ae3f1daeab60f7590b89.tar.gz
emacs-1cb12638f3a6562652e0ae3f1daeab60f7590b89.zip
(__P): Renamed from _P to avoid problems on Cygwin.
All uses changed.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/pop.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c
index 9ced4776095..46a60195aff 100644
--- a/lib-src/pop.c
+++ b/lib-src/pop.c
@@ -119,24 +119,24 @@ extern int h_errno;
119#endif 119#endif
120#endif 120#endif
121 121
122#ifndef _P 122#ifndef __P
123# ifdef __STDC__ 123# ifdef __STDC__
124# define _P(a) a 124# define __P(a) a
125# else 125# else
126# define _P(a) () 126# define __P(a) ()
127# endif /* __STDC__ */ 127# endif /* __STDC__ */
128#endif /* ! __P */ 128#endif /* ! __P */
129 129
130static int socket_connection _P((char *, int)); 130static int socket_connection __P((char *, int));
131static int pop_getline _P((popserver, char **)); 131static int pop_getline __P((popserver, char **));
132static int sendline _P((popserver, char *)); 132static int sendline __P((popserver, char *));
133static int fullwrite _P((int, char *, int)); 133static int fullwrite __P((int, char *, int));
134static int getok _P((popserver)); 134static int getok __P((popserver));
135#if 0 135#if 0
136static int gettermination _P((popserver)); 136static int gettermination __P((popserver));
137#endif 137#endif
138static void pop_trash _P((popserver)); 138static void pop_trash __P((popserver));
139static char *find_crlf _P((char *, int)); 139static char *find_crlf __P((char *, int));
140 140
141#define ERROR_MAX 160 /* a pretty arbitrary size, but needs 141#define ERROR_MAX 160 /* a pretty arbitrary size, but needs
142 to be bigger than the original 142 to be bigger than the original