12 lines
155 B
C
12 lines
155 B
C
#ifndef _KERNEL_FS_H
|
|
#define _KERNEL_FS_H
|
|
|
|
#include "glibstub.h"
|
|
#ifdef HAVE_SYS_MOUNT_H
|
|
#include <sys/mount.h>
|
|
#else
|
|
#include <linux/fs.h>
|
|
#endif
|
|
|
|
#endif
|