strace/statfs.c

20 lines
310 B
C
Raw Normal View History

/*
* Copyright (c) 2014-2018 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "defs.h"
SYS_FUNC(statfs)
{
if (entering(tcp)) {
printpath(tcp, tcp->u_arg[0]);
tprints(", ");
} else {
print_struct_statfs(tcp, tcp->u_arg[1]);
}
return 0;
}