user: implement mlibc as the libc, finally.
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#ifndef _FSTAB_H
|
||||
#define _FSTAB_H
|
||||
|
||||
#define _PATH_FSTAB "/etc/fstab"
|
||||
#define FSTAB "/etc/fstab"
|
||||
|
||||
#define FSTAB_RW "rw"
|
||||
#define FSTAB_RQ "rq"
|
||||
#define FSTAB_RO "ro"
|
||||
#define FSTAB_SW "sw"
|
||||
#define FSTAB_XX "xx"
|
||||
|
||||
struct fstab {
|
||||
char *fs_spec;
|
||||
char *fs_file;
|
||||
char *fs_vfstype;
|
||||
char *fs_mntops;
|
||||
const char *fs_type;
|
||||
int fs_freq;
|
||||
int fs_passno;
|
||||
};
|
||||
|
||||
#endif /* _FSTAB_H */
|
||||
Reference in New Issue
Block a user