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