sys/mount.h

This commit is contained in:
K. Lange 2018-08-15 15:49:01 +09:00
parent cce92274b8
commit 36ca4d420b
2 changed files with 4 additions and 4 deletions

View File

@ -10,10 +10,7 @@
#include <stdio.h> #include <stdio.h>
#include <errno.h> #include <errno.h>
#include <sys/mount.h>
#ifndef mount
extern int mount(char * source, char * target, char * type, unsigned long flags, void * data);
#endif
int main(int argc, char ** argv) { int main(int argc, char ** argv) {
if (argc < 4) { if (argc < 4) {

View File

@ -0,0 +1,3 @@
#pragma once
extern int mount(char * source, char * target, char * type, unsigned long flags, void * data);