diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 05:38:41 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 05:38:41 +0000 |
commit | 4cf99da5da3d1e2d54cf2ac81c0dfd5bf94ca98a (patch) | |
tree | 9f0555eab9627e9c6f168fc3bba971de32cffda2 /fetchmail.h | |
parent | 995f32756f7c222468bb3527ae6b9f340fe333ea (diff) | |
download | fetchmail-4cf99da5da3d1e2d54cf2ac81c0dfd5bf94ca98a.tar.gz fetchmail-4cf99da5da3d1e2d54cf2ac81c0dfd5bf94ca98a.tar.bz2 fetchmail-4cf99da5da3d1e2d54cf2ac81c0dfd5bf94ca98a.zip |
Implement batchlimit option.
svn path=/trunk/; revision=503
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 3b0973fc..49fa1ee1 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -138,6 +138,7 @@ extern int nodetach; /* if TRUE, don't detach daemon process */ extern char *logfile; /* log file for daemon mode */ extern int quitmode; /* if --quit was set */ extern int check_only; /* if --check was set */ +extern int batchlimit; /* if --batchlimit was set */ /* miscellaneous global controls */ extern char *rcfile; /* path name of rc file */ @@ -196,7 +197,7 @@ char *getpassword(char *); void escapes(const char *, char *); -void yyerror(const char *); +void yyerror(char *); int yylex(); #else |