rpm  5.2.1
mount.c
Go to the documentation of this file.
1 
6 #if defined(__linux__)
7 #include "system.h"
8 #include <sys/mount.h>
9 #include "rpmio.h"
10 #include "debug.h"
11 
12 int Mount(const char *source, const char *target,
13  const char *filesystemtype, unsigned long mountflags,
14  const void *data)
15 {
16  return mount(source, target, filesystemtype, mountflags, data);
17 }
18 
19 int Umount(const char *target)
20 {
21  return umount(target);
22 }
23 
24 int Umount2(const char *target, int flags)
25 {
26  return umount2(target, flags);
27 }
28 #endif