/* Written by Pádraig Brady */
#include <config.h> /* sets _FILE_OFFSET_BITS=64 etc. */
+#include <signal.h>
#include <stdio.h>
#include <sys/types.h>
#include <float.h>
# define OFF64_T_MIN TYPE_MINIMUM (off64_t)
#endif
+#ifndef SIGRTMIN
+# define SIGRTMIN 0
+# undef SIGRTMAX
+#endif
+#ifndef SIGRTMAX
+# define SIGRTMAX (SIGRTMIN - 1)
+#endif
+
/* These are not interesting to print.
* Instead of these defines it would be nice to be able to do
* #ifdef (TYPE##_MIN) in function macro below. */
print_float (LDBL);
/* Other useful constants */
+ printf ("SIGRTMIN=%jd\n", (intmax_t) SIGRTMIN);
+ printf ("SIGRTMAX=%jd\n", (intmax_t) SIGRTMAX);
printf ("IO_BUFSIZE=%ju\n", (uintmax_t) IO_BUFSIZE);
return EXIT_SUCCESS;