diff options
-rw-r--r-- | src/common/core.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/core.h b/src/common/core.h index d48962c94..f619d821f 100644 --- a/src/common/core.h +++ b/src/common/core.h @@ -4,6 +4,11 @@ #ifndef _CORE_H_ #define _CORE_H_ +/* so that developers with --enable-debug can raise signals from any section of the code they'd like */ +#ifdef DEBUG + #include <signal.h> +#endif + extern int arg_c; extern char **arg_v; |