#include <stdio.h>
#include <stdlib.h>
#include <sys/resource.h>

int
main(int argc, char *argv[])
{
    printf("RLIMIT_STACK : %d\n", RLIMIT_STACK);
    exit(EXIT_SUCCESS);
}
