Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/sys
File: statfs.h
/* Definitions for getting information about a filesystem.
[0] Fix | Delete
Copyright (C) 1996-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_STATFS_H
[18] Fix | Delete
#define _SYS_STATFS_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/statfs.h>
[24] Fix | Delete
[25] Fix | Delete
__BEGIN_DECLS
[26] Fix | Delete
[27] Fix | Delete
/* Return information about the filesystem on which FILE resides. */
[28] Fix | Delete
#ifndef __USE_FILE_OFFSET64
[29] Fix | Delete
extern int statfs (const char *__file, struct statfs *__buf)
[30] Fix | Delete
__THROW __nonnull ((1, 2));
[31] Fix | Delete
#else
[32] Fix | Delete
# ifdef __REDIRECT_NTH
[33] Fix | Delete
extern int __REDIRECT_NTH (statfs,
[34] Fix | Delete
(const char *__file, struct statfs *__buf),
[35] Fix | Delete
statfs64) __nonnull ((1, 2));
[36] Fix | Delete
# else
[37] Fix | Delete
# define statfs statfs64
[38] Fix | Delete
# endif
[39] Fix | Delete
#endif
[40] Fix | Delete
#ifdef __USE_LARGEFILE64
[41] Fix | Delete
extern int statfs64 (const char *__file, struct statfs64 *__buf)
[42] Fix | Delete
__THROW __nonnull ((1, 2));
[43] Fix | Delete
#endif
[44] Fix | Delete
[45] Fix | Delete
/* Return information about the filesystem containing the file FILDES
[46] Fix | Delete
refers to. */
[47] Fix | Delete
#ifndef __USE_FILE_OFFSET64
[48] Fix | Delete
extern int fstatfs (int __fildes, struct statfs *__buf)
[49] Fix | Delete
__THROW __nonnull ((2));
[50] Fix | Delete
#else
[51] Fix | Delete
# ifdef __REDIRECT_NTH
[52] Fix | Delete
extern int __REDIRECT_NTH (fstatfs, (int __fildes, struct statfs *__buf),
[53] Fix | Delete
fstatfs64) __nonnull ((2));
[54] Fix | Delete
# else
[55] Fix | Delete
# define fstatfs fstatfs64
[56] Fix | Delete
# endif
[57] Fix | Delete
#endif
[58] Fix | Delete
#ifdef __USE_LARGEFILE64
[59] Fix | Delete
extern int fstatfs64 (int __fildes, struct statfs64 *__buf)
[60] Fix | Delete
__THROW __nonnull ((2));
[61] Fix | Delete
#endif
[62] Fix | Delete
[63] Fix | Delete
__END_DECLS
[64] Fix | Delete
[65] Fix | Delete
#endif /* sys/statfs.h */
[66] Fix | Delete
[67] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function