]> granicus.if.org Git - strace/blob - umount.c
Include "kernel_types.h" in defs.h and tests/tests.h
[strace] / umount.c
1 #include "defs.h"
2 #include "xlat/umount_flags.h"
3
4 SYS_FUNC(umount2)
5 {
6         printpath(tcp, tcp->u_arg[0]);
7         tprints(", ");
8         printflags(umount_flags, tcp->u_arg[1], "MNT_???");
9
10         return RVAL_DECODED;
11 }