diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pgp/stub_gpg.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/pgp/stub_gpg.c b/tests/pgp/stub_gpg.c index f0c30b55..29a1d828 100644 --- a/tests/pgp/stub_gpg.c +++ b/tests/pgp/stub_gpg.c @@ -1,5 +1,7 @@ #include <glib.h> +#include "pgp/gpg.h" + void p_gpg_init(void) {} GSList* p_gpg_list_keys(void) @@ -11,3 +13,5 @@ const char* p_gpg_libver(void) { return NULL; } +void p_gpg_free_key(ProfPGPKey *key) {} + |