blob: 63eb3dfa62756eed3153f890a8ed736079b53d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "defs.h"
SYS_FUNC(fstatfs64)
{
const unsigned long size = tcp->u_arg[1];
if (entering(tcp)) {
printfd(tcp, tcp->u_arg[0]);
tprintf(", %lu, ", size);
} else {
print_struct_statfs64(tcp, tcp->u_arg[2], size);
}
return 0;
}
|