1 2 3 4 5 6
#include <syscall.h> int umount(const char *target) { return syscall(umount2, target, 0); }