diff options
author | James Booth <boothj5@gmail.com> | 2015-03-22 00:29:57 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-03-22 00:29:57 +0000 |
commit | fd86615549a76c050dbcb50deaefde199d8216c7 (patch) | |
tree | 18ef2d1310de2102e752205270af909a920bcada /tests/pgp | |
parent | 1d90cc78949f2a26cc9eb847842149199225ff15 (diff) | |
download | profani-tty-fd86615549a76c050dbcb50deaefde199d8216c7.tar.gz |
Added /pgp libver command
Diffstat (limited to 'tests/pgp')
-rw-r--r-- | tests/pgp/stub_gpg.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/pgp/stub_gpg.c b/tests/pgp/stub_gpg.c index 4ee03129..f0c30b55 100644 --- a/tests/pgp/stub_gpg.c +++ b/tests/pgp/stub_gpg.c @@ -1,7 +1,13 @@ #include <glib.h> void p_gpg_init(void) {} + GSList* p_gpg_list_keys(void) { return NULL; } + +const char* p_gpg_libver(void) { + return NULL; +} + |