xref: /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/cris/c/getcwd1.c (revision 4b169a6ba595ae283ca507b26b15fdff40495b1c)
1*4b169a6bSchristos /*
2*4b169a6bSchristos #progos: linux
3*4b169a6bSchristos */
4*4b169a6bSchristos 
5*4b169a6bSchristos #include <unistd.h>
6*4b169a6bSchristos #include <errno.h>
7*4b169a6bSchristos #include <stdio.h>
8*4b169a6bSchristos #include <stdlib.h>
9*4b169a6bSchristos 
main(int argc,char * argv[])10*4b169a6bSchristos int main (int argc, char *argv[])
11*4b169a6bSchristos {
12*4b169a6bSchristos   if (getcwd ((void *) -1, 4096) != NULL
13*4b169a6bSchristos       || errno != EFAULT)
14*4b169a6bSchristos     abort ();
15*4b169a6bSchristos 
16*4b169a6bSchristos   printf ("pass\n");
17*4b169a6bSchristos   exit (0);
18*4b169a6bSchristos }
19