From 0acd709d6287dafc00c831f8d0f6816ea2220098 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 22 Oct 2017 15:14:23 +0100 Subject: [PATCH] umount: add new syscall wrapper for umount --- Library/libs/umount.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Library/libs/umount.c diff --git a/Library/libs/umount.c b/Library/libs/umount.c new file mode 100644 index 00000000..93643feb --- /dev/null +++ b/Library/libs/umount.c @@ -0,0 +1,7 @@ +#include +#include + +int umount(const char *dev) +{ + return _umount(dev, 0); +} -- 2.34.1