Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: environments.h
/* Copyright (C) 1999-2018 Free Software Foundation, Inc.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
[2] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[3] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[4] Fix | Delete
License as published by the Free Software Foundation; either
[5] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[6] Fix | Delete
[7] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[8] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[9] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[10] Fix | Delete
Lesser General Public License for more details.
[11] Fix | Delete
[12] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[13] Fix | Delete
License along with the GNU C Library; if not, see
[14] Fix | Delete
<http://www.gnu.org/licenses/>. */
[15] Fix | Delete
[16] Fix | Delete
#ifndef _UNISTD_H
[17] Fix | Delete
# error "Never include this file directly. Use <unistd.h> instead"
[18] Fix | Delete
#endif
[19] Fix | Delete
[20] Fix | Delete
#include <bits/wordsize.h>
[21] Fix | Delete
[22] Fix | Delete
/* This header should define the following symbols under the described
[23] Fix | Delete
situations. A value `1' means that the model is always supported,
[24] Fix | Delete
`-1' means it is never supported. Undefined means it cannot be
[25] Fix | Delete
statically decided.
[26] Fix | Delete
[27] Fix | Delete
_POSIX_V7_ILP32_OFF32 32bit int, long, pointers, and off_t type
[28] Fix | Delete
_POSIX_V7_ILP32_OFFBIG 32bit int, long, and pointers and larger off_t type
[29] Fix | Delete
[30] Fix | Delete
_POSIX_V7_LP64_OFF32 64bit long and pointers and 32bit off_t type
[31] Fix | Delete
_POSIX_V7_LPBIG_OFFBIG 64bit long and pointers and large off_t type
[32] Fix | Delete
[33] Fix | Delete
The macros _POSIX_V6_ILP32_OFF32, _POSIX_V6_ILP32_OFFBIG,
[34] Fix | Delete
_POSIX_V6_LP64_OFF32, _POSIX_V6_LPBIG_OFFBIG, _XBS5_ILP32_OFF32,
[35] Fix | Delete
_XBS5_ILP32_OFFBIG, _XBS5_LP64_OFF32, and _XBS5_LPBIG_OFFBIG were
[36] Fix | Delete
used in previous versions of the Unix standard and are available
[37] Fix | Delete
only for compatibility.
[38] Fix | Delete
*/
[39] Fix | Delete
[40] Fix | Delete
#if __WORDSIZE == 64
[41] Fix | Delete
[42] Fix | Delete
/* Environments with 32-bit wide pointers are optionally provided.
[43] Fix | Delete
Therefore following macros aren't defined:
[44] Fix | Delete
# undef _POSIX_V7_ILP32_OFF32
[45] Fix | Delete
# undef _POSIX_V7_ILP32_OFFBIG
[46] Fix | Delete
# undef _POSIX_V6_ILP32_OFF32
[47] Fix | Delete
# undef _POSIX_V6_ILP32_OFFBIG
[48] Fix | Delete
# undef _XBS5_ILP32_OFF32
[49] Fix | Delete
# undef _XBS5_ILP32_OFFBIG
[50] Fix | Delete
and users need to check at runtime. */
[51] Fix | Delete
[52] Fix | Delete
/* We also have no use (for now) for an environment with bigger pointers
[53] Fix | Delete
and offsets. */
[54] Fix | Delete
# define _POSIX_V7_LPBIG_OFFBIG -1
[55] Fix | Delete
# define _POSIX_V6_LPBIG_OFFBIG -1
[56] Fix | Delete
# define _XBS5_LPBIG_OFFBIG -1
[57] Fix | Delete
[58] Fix | Delete
/* By default we have 64-bit wide `long int', pointers and `off_t'. */
[59] Fix | Delete
# define _POSIX_V7_LP64_OFF64 1
[60] Fix | Delete
# define _POSIX_V6_LP64_OFF64 1
[61] Fix | Delete
# define _XBS5_LP64_OFF64 1
[62] Fix | Delete
[63] Fix | Delete
#else /* __WORDSIZE == 32 */
[64] Fix | Delete
[65] Fix | Delete
/* We have 32-bit wide `int', `long int' and pointers and all platforms
[66] Fix | Delete
support LFS. -mx32 has 64-bit wide `off_t'. */
[67] Fix | Delete
# define _POSIX_V7_ILP32_OFFBIG 1
[68] Fix | Delete
# define _POSIX_V6_ILP32_OFFBIG 1
[69] Fix | Delete
# define _XBS5_ILP32_OFFBIG 1
[70] Fix | Delete
[71] Fix | Delete
# ifndef __x86_64__
[72] Fix | Delete
/* -m32 has 32-bit wide `off_t'. */
[73] Fix | Delete
# define _POSIX_V7_ILP32_OFF32 1
[74] Fix | Delete
# define _POSIX_V6_ILP32_OFF32 1
[75] Fix | Delete
# define _XBS5_ILP32_OFF32 1
[76] Fix | Delete
# endif
[77] Fix | Delete
[78] Fix | Delete
/* We optionally provide an environment with the above size but an 64-bit
[79] Fix | Delete
side `off_t'. Therefore we don't define _POSIX_V7_ILP32_OFFBIG. */
[80] Fix | Delete
[81] Fix | Delete
/* Environments with 64-bit wide pointers can be provided,
[82] Fix | Delete
so these macros aren't defined:
[83] Fix | Delete
# undef _POSIX_V7_LP64_OFF64
[84] Fix | Delete
# undef _POSIX_V7_LPBIG_OFFBIG
[85] Fix | Delete
# undef _POSIX_V6_LP64_OFF64
[86] Fix | Delete
# undef _POSIX_V6_LPBIG_OFFBIG
[87] Fix | Delete
# undef _XBS5_LP64_OFF64
[88] Fix | Delete
# undef _XBS5_LPBIG_OFFBIG
[89] Fix | Delete
and sysconf tests for it at runtime. */
[90] Fix | Delete
[91] Fix | Delete
#endif /* __WORDSIZE == 32 */
[92] Fix | Delete
[93] Fix | Delete
#define __ILP32_OFF32_CFLAGS "-m32"
[94] Fix | Delete
#define __ILP32_OFF32_LDFLAGS "-m32"
[95] Fix | Delete
#if defined __x86_64__ && defined __ILP32__
[96] Fix | Delete
# define __ILP32_OFFBIG_CFLAGS "-mx32"
[97] Fix | Delete
# define __ILP32_OFFBIG_LDFLAGS "-mx32"
[98] Fix | Delete
#else
[99] Fix | Delete
# define __ILP32_OFFBIG_CFLAGS "-m32 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
[100] Fix | Delete
# define __ILP32_OFFBIG_LDFLAGS "-m32"
[101] Fix | Delete
#endif
[102] Fix | Delete
#define __LP64_OFF64_CFLAGS "-m64"
[103] Fix | Delete
#define __LP64_OFF64_LDFLAGS "-m64"
[104] Fix | Delete
[105] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function