Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/sys
File: statvfs.h
/* Definitions for getting information about a filesystem.
[0] Fix | Delete
Copyright (C) 1998-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#ifndef _SYS_STATVFS_H
[18] Fix | Delete
#define _SYS_STATVFS_H 1
[19] Fix | Delete
[20] Fix | Delete
#include <features.h>
[21] Fix | Delete
[22] Fix | Delete
/* Get the system-specific definition of `struct statfs'. */
[23] Fix | Delete
#include <bits/statvfs.h>
[24] Fix | Delete
[25] Fix | Delete
#ifndef __USE_FILE_OFFSET64
[26] Fix | Delete
# ifndef __fsblkcnt_t_defined
[27] Fix | Delete
typedef __fsblkcnt_t fsblkcnt_t; /* Type to count file system blocks. */
[28] Fix | Delete
# define __fsblkcnt_t_defined
[29] Fix | Delete
# endif
[30] Fix | Delete
# ifndef __fsfilcnt_t_defined
[31] Fix | Delete
typedef __fsfilcnt_t fsfilcnt_t; /* Type to count file system inodes. */
[32] Fix | Delete
# define __fsfilcnt_t_defined
[33] Fix | Delete
# endif
[34] Fix | Delete
#else
[35] Fix | Delete
# ifndef __fsblkcnt_t_defined
[36] Fix | Delete
typedef __fsblkcnt64_t fsblkcnt_t; /* Type to count file system blocks. */
[37] Fix | Delete
# define __fsblkcnt_t_defined
[38] Fix | Delete
# endif
[39] Fix | Delete
# ifndef __fsfilcnt_t_defined
[40] Fix | Delete
typedef __fsfilcnt64_t fsfilcnt_t; /* Type to count file system inodes. */
[41] Fix | Delete
# define __fsfilcnt_t_defined
[42] Fix | Delete
# endif
[43] Fix | Delete
#endif
[44] Fix | Delete
[45] Fix | Delete
__BEGIN_DECLS
[46] Fix | Delete
[47] Fix | Delete
/* Return information about the filesystem on which FILE resides. */
[48] Fix | Delete
#ifndef __USE_FILE_OFFSET64
[49] Fix | Delete
extern int statvfs (const char *__restrict __file,
[50] Fix | Delete
struct statvfs *__restrict __buf)
[51] Fix | Delete
__THROW __nonnull ((1, 2));
[52] Fix | Delete
#else
[53] Fix | Delete
# ifdef __REDIRECT_NTH
[54] Fix | Delete
extern int __REDIRECT_NTH (statvfs,
[55] Fix | Delete
(const char *__restrict __file,
[56] Fix | Delete
struct statvfs *__restrict __buf), statvfs64)
[57] Fix | Delete
__nonnull ((1, 2));
[58] Fix | Delete
# else
[59] Fix | Delete
# define statvfs statvfs64
[60] Fix | Delete
# endif
[61] Fix | Delete
#endif
[62] Fix | Delete
#ifdef __USE_LARGEFILE64
[63] Fix | Delete
extern int statvfs64 (const char *__restrict __file,
[64] Fix | Delete
struct statvfs64 *__restrict __buf)
[65] Fix | Delete
__THROW __nonnull ((1, 2));
[66] Fix | Delete
#endif
[67] Fix | Delete
[68] Fix | Delete
/* Return information about the filesystem containing the file FILDES
[69] Fix | Delete
refers to. */
[70] Fix | Delete
#ifndef __USE_FILE_OFFSET64
[71] Fix | Delete
extern int fstatvfs (int __fildes, struct statvfs *__buf)
[72] Fix | Delete
__THROW __nonnull ((2));
[73] Fix | Delete
#else
[74] Fix | Delete
# ifdef __REDIRECT_NTH
[75] Fix | Delete
extern int __REDIRECT_NTH (fstatvfs, (int __fildes, struct statvfs *__buf),
[76] Fix | Delete
fstatvfs64) __nonnull ((2));
[77] Fix | Delete
# else
[78] Fix | Delete
# define fstatvfs fstatvfs64
[79] Fix | Delete
# endif
[80] Fix | Delete
#endif
[81] Fix | Delete
#ifdef __USE_LARGEFILE64
[82] Fix | Delete
extern int fstatvfs64 (int __fildes, struct statvfs64 *__buf)
[83] Fix | Delete
__THROW __nonnull ((2));
[84] Fix | Delete
#endif
[85] Fix | Delete
[86] Fix | Delete
__END_DECLS
[87] Fix | Delete
[88] Fix | Delete
#endif /* sys/statvfs.h */
[89] Fix | Delete
[90] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function