From: Thomas Roessler Date: Fri, 7 Mar 2003 08:23:27 +0000 (+0000) Subject: Don't use functions without importing the corresponding prototype. X-Git-Tag: mutt-1-5-4-rel~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=239a5805e53793a89311e5778b85f97bb1454c67;p=mutt Don't use functions without importing the corresponding prototype. --- diff --git a/crypt.c b/crypt.c index b0ecafaa..9cac34c7 100644 --- a/crypt.c +++ b/crypt.c @@ -26,6 +26,7 @@ #include "mime.h" #include "copy.h" #include "mutt_crypt.h" +#include "pgp.h" #include #include diff --git a/pgp.h b/pgp.h index a975736b..5c696651 100644 --- a/pgp.h +++ b/pgp.h @@ -25,7 +25,7 @@ /* prototypes */ -int pgp_use_gpg_agent(); +int pgp_use_gpg_agent(void); int pgp_check_traditional (FILE *, BODY *, int); BODY *pgp_decrypt_part (BODY *, STATE *, FILE *, BODY *);