diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 17:51:52 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 17:51:52 +0000 |
commit | cb236290e267f17d5f81a18d742b81f1b74b05a2 (patch) | |
tree | e6c74acdaa0881bb8accab285d77f146381b2f81 /fetchmail.h | |
parent | 7b11f0ff9972d8046e69f98948fdab26b5199caf (diff) | |
download | fetchmail-cb236290e267f17d5f81a18d742b81f1b74b05a2.tar.gz fetchmail-cb236290e267f17d5f81a18d742b81f1b74b05a2.tar.bz2 fetchmail-cb236290e267f17d5f81a18d742b81f1b74b05a2.zip |
Prototypes everywhere.
svn path=/trunk/; revision=515
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/fetchmail.h b/fetchmail.h index 785d7e17..9bdc6e96 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -148,8 +148,6 @@ extern int linelimit; /* limit # lines retrieved per site */ extern int versioninfo; /* emit only version info */ extern char *user; /* name of invoking user */ -#ifdef HAVE_PROTOTYPES - /* prototypes for globally callable functions */ #if defined(HAVE_STDARG_H) void gen_send (FILE *sockfp, char *, ... ); @@ -198,16 +196,8 @@ char *getpassword(char *); void escapes(const char *, char *); -void yyerror(char *); -int yylex(); - -#else - -struct query *hostinit(); -char *MD5Digest (); -void optmerge(); - -#endif +void yyerror(const char *); +int yylex(void); #define FALSE 0 #define TRUE 1 |