summaryrefslogtreecommitdiffstats
path: root/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'error.h')
-rw-r--r--error.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/error.h b/error.h
index 62926cc..148ca61 100644
--- a/error.h
+++ b/error.h
@@ -196,7 +196,7 @@ FILE *msg_fp(void);
void assert_failed (const char *filename, int line);
#ifdef ENABLE_DEBUG
-void crash (void); // force a segfault (debugging only)
+void crash (void); /* force a segfault (debugging only) */
#endif
/* Inline functions */
@@ -207,6 +207,9 @@ check_debug_level (unsigned int level)
return (level & M_DEBUG_LEVEL) <= x_debug_level;
}
+/* Call if we forked */
+void msg_forked (void);
+
/* syslog output */
void open_syslog (const char *pgmname, bool stdio_to_null);