diff options
author | Werner Koch <[email protected]> | 2016-08-03 13:27:03 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-08-03 13:27:13 +0000 |
commit | 3a2421c94015432caa49e166bc5bf5c4f80ab7c7 (patch) | |
tree | 7de4d18960ac6b4f91429bfa8608b49783c42895 /common/util.h | |
parent | gpgsm: Fix machine-readable key listing. (diff) | |
download | gnupg-3a2421c94015432caa49e166bc5bf5c4f80ab7c7.tar.gz gnupg-3a2421c94015432caa49e166bc5bf5c4f80ab7c7.zip |
common: New file utilproto.c
* common/util.h: Factor prototypes from signal.c out to ...
* common/utilproto.h: new.
* common/Makefile.am (common_sources): Add new file.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'common/util.h')
-rw-r--r-- | common/util.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/common/util.h b/common/util.h index eb7a3fd31..29e0ec98e 100644 --- a/common/util.h +++ b/common/util.h @@ -54,6 +54,7 @@ #include "../common/utf8conv.h" #include "../common/dynload.h" #include "../common/fwddecl.h" +#include "../common/utilproto.h" #include "gettime.h" @@ -114,11 +115,6 @@ out_of_core (void) } -/*-- signal.c --*/ -void gnupg_init_signals (int mode, void (*fast_cleanup)(void)); -void gnupg_block_all_signals (void); -void gnupg_unblock_all_signals (void); - /*-- yesno.c --*/ int answer_is_yes (const char *s); int answer_is_yes_no_default (const char *s, int def_answer); |