#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>

int
main(int argc, char *argv[])
{
    printf("SIG_ATOMIC_MIN=%+ld\n", (long) SIG_ATOMIC_MIN);
    printf("SIG_ATOMIC_MAX=%+ld\n", (long) SIG_ATOMIC_MAX);

    exit(EXIT_SUCCESS);
}
