1/* Check corner error case: specifying unimplemented resource.
2#notarget: cris*-*-elf
3*/
4
5#include <sys/time.h>
6#include <sys/resource.h>
7#include <unistd.h>
8#include <stdio.h>
9#include <errno.h>
10#include <stdlib.h>
11
12int main (void)
13{
14  struct rlimit lim;
15
16  if (getrlimit (RLIMIT_NPROC, &lim) != -1
17      || errno != EINVAL)
18    abort ();
19  printf ("pass\n");
20  exit (0);
21}
22