summaryrefslogtreecommitdiff
path: root/setup_once.h
diff options
context:
space:
mode:
Diffstat (limited to 'setup_once.h')
-rw-r--r--setup_once.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/setup_once.h b/setup_once.h
index 224ab69..23d75ca 100644
--- a/setup_once.h
+++ b/setup_once.h
@@ -123,5 +123,15 @@
#define ISPRINT(x) (isprint((int) ((unsigned char)x)))
+/*
+ * Typedef to 'int' if sig_atomic_t is not an available 'typedefed' type.
+ */
+
+#ifndef HAVE_SIG_ATOMIC_T
+typedef int sig_atomic_t;
+#define HAVE_SIG_ATOMIC_T
+#endif
+
+
#endif /* __SETUP_ONCE_H */