summaryrefslogtreecommitdiff
path: root/config.h.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'config.h.cmake')
-rw-r--r--config.h.cmake16
1 files changed, 16 insertions, 0 deletions
diff --git a/config.h.cmake b/config.h.cmake
index 5faed9e2..e6905125 100644
--- a/config.h.cmake
+++ b/config.h.cmake
@@ -129,6 +129,12 @@
/* Define to 1 if you have the `unsetenv' function. */
#cmakedefine HAVE_UNSETENV 1
+/* Define to 1 if you have the `alarm' function. */
+#cmakedefine HAVE_ALARM 1
+
+/* Define to 1 if you have the `signal' function. */
+#cmakedefine HAVE_SIGNAL 1
+
/* Define to 1 if you have the `waitpid' function. */
#cmakedefine HAVE_WAITPID 1
@@ -408,6 +414,16 @@ typedef ssize_t IO_SSIZE_T;
#endif
#endif
+/* alarm - function to set and alarm for delivering a signal */
+#if defined(HAVE_ALARM)
+#include <unistd.h>
+#endif
+
+/* signal - signal handling function */
+#if defined(HAVE_SIGNAL)
+#include <signal.h>
+#endif
+
/* waitpid - system function waiting on a process */
#if defined(HAVE_WAITPID)
#include <sys/types.h>