rpm  5.2.1
rpmio/mount.c
Go to the documentation of this file.
00001 
00006 #if defined(__linux__)
00007 #include "system.h"
00008 #include <sys/mount.h>
00009 #include "rpmio.h"
00010 #include "debug.h"
00011 
00012 int Mount(const char *source, const char *target,
00013                 const char *filesystemtype, unsigned long mountflags,
00014                 const void *data)
00015 {
00016     return mount(source, target, filesystemtype, mountflags, data);
00017 }
00018 
00019 int Umount(const char *target)
00020 {
00021     return umount(target);
00022 }
00023 
00024 int Umount2(const char *target, int flags)
00025 {
00026     return umount2(target, flags);
00027 }
00028 #endif