Blame |
Last modification |
View Log
| RSS feed
/*
* Project: S.Ha.R.K.
*
* Coordinators:
* Giorgio Buttazzo <giorgio@sssup.it>
* Paolo Gai <pj@gandalf.sssup.it>
*
* Authors :
* Paolo Gai <pj@gandalf.sssup.it>
* Massimiliano Giorgi <massy@gandalf.sssup.it>
* Luca Abeni <luca@gandalf.sssup.it>
* (see the web pages for full authors list)
*
* ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
*
* http://www.sssup.it
* http://retis.sssup.it
* http://shark.sssup.it
*/
#ifndef __SYS_MOUNT_H__
#define __SYS_MOUNT_H__
#include <features.h>
#include <sys/types.h>
#include <fs/mount.h>
#include <fs/fsind.h>
dev_t fdevice __P ((char *device_name));
int mount __P ((dev_t device, u_int8_t fsind,
char *where, struct mount_opts *options));
int umount __P ((dev_t device));
#endif