forked from KolibriOS/kolibrios
Adding menuetlibc back to its place in /programs/develop/libraries
This version of menuetlibc was taken from revision 4743, right before I made any changes git-svn-id: svn://kolibrios.org@4973 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
50
programs/develop/libraries/menuetlibc/include/sys/vfs.h
Normal file
50
programs/develop/libraries/menuetlibc/include/sys/vfs.h
Normal file
@@ -0,0 +1,50 @@
|
||||
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
|
||||
#ifndef __dj_include_sys_vfs_h_
|
||||
#define __dj_include_sys_vfs_h_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifndef __dj_ENFORCE_ANSI_FREESTANDING
|
||||
|
||||
#ifndef __STRICT_ANSI__
|
||||
|
||||
#ifndef _POSIX_SOURCE
|
||||
|
||||
typedef long fsid_t[2];
|
||||
|
||||
#define MOUNT_UFS 0
|
||||
#define MOUNT_NFS 1 /* Not possible on DOS */
|
||||
#define MOUNT_CDFS 2 /* Not possible on DOS */
|
||||
|
||||
#define FS_MAGIC 0x11954 /* Taken from HP-UX */
|
||||
|
||||
struct statfs
|
||||
{
|
||||
long f_type;
|
||||
long f_bsize;
|
||||
long f_blocks;
|
||||
long f_bfree;
|
||||
long f_bavail;
|
||||
long f_files;
|
||||
long f_ffree;
|
||||
fsid_t f_fsid;
|
||||
long f_magic;
|
||||
};
|
||||
|
||||
extern int statfs(const char *, struct statfs *);
|
||||
extern int fstatfs(int, struct statfs *);
|
||||
|
||||
#endif /* !_POSIX_SOURCE */
|
||||
#endif /* !__STRICT_ANSI__ */
|
||||
#endif /* !__dj_ENFORCE_ANSI_FREESTANDING */
|
||||
|
||||
#ifndef __dj_ENFORCE_FUNCTION_CALLS
|
||||
#endif /* !__dj_ENFORCE_FUNCTION_CALLS */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* !__dj_include_sys_vfs_h_ */
|
Reference in New Issue
Block a user