source: azure_iot_hub/trunk/musl-1.1.18/src/linux/mount.c@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csrc
File size: 393 bytes
Line 
1#include <sys/mount.h>
2#include "syscall.h"
3
4int mount(const char *special, const char *dir, const char *fstype, unsigned long flags, const void *data)
5{
6 return syscall(SYS_mount, special, dir, fstype, flags, data);
7}
8
9int umount(const char *special)
10{
11 return syscall(SYS_umount2, special, 0);
12}
13
14int umount2(const char *special, int flags)
15{
16 return syscall(SYS_umount2, special, flags);
17}
Note: See TracBrowser for help on using the repository browser.