]> granicus.if.org Git - strace/blob - statfs.c
Move string_to_uint* functions to a separate file
[strace] / statfs.c
1 #include "defs.h"
2
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 }