Subversion Repositories HelenOS

Rev

Rev 2671 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2671 Rev 2674
Line 33... Line 33...
33
 */
33
 */
34
 
34
 
35
#ifndef LIBC_VFS_H_
35
#ifndef LIBC_VFS_H_
36
#define LIBC_VFS_H_
36
#define LIBC_VFS_H_
37
 
37
 
38
#include <sys/types.h>
-
 
39
 
-
 
40
extern int mount(const char *, const char *, const char *);
38
extern int mount(const char *, const char *, const char *);
41
extern int open(const char *, int, ...);
-
 
42
extern ssize_t read(int, void *, size_t);
-
 
43
 
39
 
44
#endif
40
#endif
45
 
41
 
46
/** @}
42
/** @}
47
 */
43
 */