From: Alan Cox Date: Sun, 22 Oct 2017 14:14:23 +0000 (+0100) Subject: umount: add new syscall wrapper for umount X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=0acd709d6287dafc00c831f8d0f6816ea2220098;p=FUZIX.git umount: add new syscall wrapper for umount --- 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); +}