diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-15 14:48:34 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-15 14:48:34 +0000 |
commit | 4c2423a98542de4ab80ff75cb5987aa59f788ee1 (patch) | |
tree | e27ebc534bd4815c5b51ecf8f35f4640336d7c17 /fetchmail.h | |
parent | c1e1a25354f0072bf6bb871361f0316ed4e90593 (diff) | |
download | fetchmail-4c2423a98542de4ab80ff75cb5987aa59f788ee1.tar.gz fetchmail-4c2423a98542de4ab80ff75cb5987aa59f788ee1.tar.bz2 fetchmail-4c2423a98542de4ab80ff75cb5987aa59f788ee1.zip |
Simplify the autoconfig process a lot.
svn path=/trunk/; revision=337
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h index 9819e6ba..cb181626 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -139,8 +139,16 @@ extern int versioninfo; /* emit only version info */ #ifdef HAVE_PROTOTYPES /* prototypes for globally callable functions */ +#if defined(HAVE_STDARG_H) +void gen_send (int socket, char *fmt, ... ); +int gen_transact (int socket, char *fmt, ... ); +#else void gen_send (); int gen_transact (); +#endif + +void *xmalloc(int); +char *xstrdup(char *); int doPOP2 (struct hostrec *); int doPOP3 (struct hostrec *); |