• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "defs.h"
2 
SYS_FUNC(fstatfs64)3 SYS_FUNC(fstatfs64)
4 {
5 	if (entering(tcp)) {
6 		printfd(tcp, tcp->u_arg[0]);
7 		tprintf(", %" PRI_klu ", ", tcp->u_arg[1]);
8 	} else {
9 		print_struct_statfs64(tcp, tcp->u_arg[2], tcp->u_arg[1]);
10 	}
11 	return 0;
12 }
13