• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "tests.h"
2 #include <asm/unistd.h>
3 
4 #ifdef __NR_fchdir
5 
6 # include <stdio.h>
7 # include <unistd.h>
8 
9 int
main(void)10 main(void)
11 {
12 	const long int fd = (long int) 0xdeadbeefffffffffULL;
13 
14 	long rc = syscall(__NR_fchdir, fd);
15 	printf("fchdir(%d) = %ld %s (%m)\n",
16 	       (int) fd, rc, errno2name());
17 
18 	puts("+++ exited with 0 +++");
19 	return 0;
20 }
21 
22 #else
23 
24 SKIP_MAIN_UNDEFINED("__NR_fchdir")
25 
26 #endif
27