/* [gs]etrlimit(): SVr4, BSD 4.3 */
#ifdef GATEG_RLIMIT_CORE
typedef struct rlimit gateg_rlimit;
#	define GATEG_SETRLIMIT(x, y) setrlimit((x), (y))
#else
typedef struct
{
	long rlim_cur;
	long rlim_max;
} gateg_rlimit;
#	define GATEG_SETRLIMIT(x, y) (-1)
#endif