mount.h 431 B

1234567891011121314151617
  1. #ifndef _SYS_MOUNT_H
  2. #define _SYS_MOUNT_H
  3. #include <features.h>
  4. __BEGIN_DECLS
  5. extern int mount __P ((__const char* __specialfile,
  6. __const char* __dir,__const char* __filesystemype,
  7. unsigned long __rwflag,__const void *__data));
  8. extern int umount __P ((__const char* __specialfile));
  9. __END_DECLS
  10. #endif