diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-12-17 02:09:51 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-12-17 02:09:51 +0000 |
commit | 0922eb1ccb33983bd4ad2d5c38475d56e2e60137 (patch) | |
tree | 5d4e126da335d88279e0447feb988a5816f29a63 /fetchmail.h | |
parent | d4009e757f45a4f09bd415cc032b079f316b4c46 (diff) | |
download | fetchmail-0922eb1ccb33983bd4ad2d5c38475d56e2e60137.tar.gz fetchmail-0922eb1ccb33983bd4ad2d5c38475d56e2e60137.tar.bz2 fetchmail-0922eb1ccb33983bd4ad2d5c38475d56e2e60137.zip |
Use error() for messages almost everywhere.
svn path=/trunk/; revision=636
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h index 9e10cd0d..e2d65be6 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -162,9 +162,11 @@ extern int smtp_response; /* numeric value of SMTP response code */ /* prototypes for globally callable functions */ #if defined(HAVE_STDARG_H) +void error (int status, int errnum, const char *format, ...); void gen_send (FILE *sockfp, char *, ... ); int gen_transact (FILE *sockfp, char *, ... ); #else +void error (); void gen_send (); int gen_transact (); #endif |