Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include/sys
File: utsname.h
/* Copyright (C) 1991-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
/*
[17] Fix | Delete
* POSIX Standard: 4.4 System Identification <sys/utsname.h>
[18] Fix | Delete
*/
[19] Fix | Delete
[20] Fix | Delete
#ifndef _SYS_UTSNAME_H
[21] Fix | Delete
#define _SYS_UTSNAME_H 1
[22] Fix | Delete
[23] Fix | Delete
#include <features.h>
[24] Fix | Delete
[25] Fix | Delete
__BEGIN_DECLS
[26] Fix | Delete
[27] Fix | Delete
#include <bits/utsname.h>
[28] Fix | Delete
[29] Fix | Delete
#ifndef _UTSNAME_SYSNAME_LENGTH
[30] Fix | Delete
# define _UTSNAME_SYSNAME_LENGTH _UTSNAME_LENGTH
[31] Fix | Delete
#endif
[32] Fix | Delete
#ifndef _UTSNAME_NODENAME_LENGTH
[33] Fix | Delete
# define _UTSNAME_NODENAME_LENGTH _UTSNAME_LENGTH
[34] Fix | Delete
#endif
[35] Fix | Delete
#ifndef _UTSNAME_RELEASE_LENGTH
[36] Fix | Delete
# define _UTSNAME_RELEASE_LENGTH _UTSNAME_LENGTH
[37] Fix | Delete
#endif
[38] Fix | Delete
#ifndef _UTSNAME_VERSION_LENGTH
[39] Fix | Delete
# define _UTSNAME_VERSION_LENGTH _UTSNAME_LENGTH
[40] Fix | Delete
#endif
[41] Fix | Delete
#ifndef _UTSNAME_MACHINE_LENGTH
[42] Fix | Delete
# define _UTSNAME_MACHINE_LENGTH _UTSNAME_LENGTH
[43] Fix | Delete
#endif
[44] Fix | Delete
[45] Fix | Delete
/* Structure describing the system and machine. */
[46] Fix | Delete
struct utsname
[47] Fix | Delete
{
[48] Fix | Delete
/* Name of the implementation of the operating system. */
[49] Fix | Delete
char sysname[_UTSNAME_SYSNAME_LENGTH];
[50] Fix | Delete
[51] Fix | Delete
/* Name of this node on the network. */
[52] Fix | Delete
char nodename[_UTSNAME_NODENAME_LENGTH];
[53] Fix | Delete
[54] Fix | Delete
/* Current release level of this implementation. */
[55] Fix | Delete
char release[_UTSNAME_RELEASE_LENGTH];
[56] Fix | Delete
/* Current version level of this release. */
[57] Fix | Delete
char version[_UTSNAME_VERSION_LENGTH];
[58] Fix | Delete
[59] Fix | Delete
/* Name of the hardware type the system is running on. */
[60] Fix | Delete
char machine[_UTSNAME_MACHINE_LENGTH];
[61] Fix | Delete
[62] Fix | Delete
#if _UTSNAME_DOMAIN_LENGTH - 0
[63] Fix | Delete
/* Name of the domain of this node on the network. */
[64] Fix | Delete
# ifdef __USE_GNU
[65] Fix | Delete
char domainname[_UTSNAME_DOMAIN_LENGTH];
[66] Fix | Delete
# else
[67] Fix | Delete
char __domainname[_UTSNAME_DOMAIN_LENGTH];
[68] Fix | Delete
# endif
[69] Fix | Delete
#endif
[70] Fix | Delete
};
[71] Fix | Delete
[72] Fix | Delete
#ifdef __USE_MISC
[73] Fix | Delete
/* Note that SVID assumes all members have the same size. */
[74] Fix | Delete
# define SYS_NMLN _UTSNAME_LENGTH
[75] Fix | Delete
#endif
[76] Fix | Delete
[77] Fix | Delete
[78] Fix | Delete
/* Put information about the system in NAME. */
[79] Fix | Delete
extern int uname (struct utsname *__name) __THROW;
[80] Fix | Delete
[81] Fix | Delete
[82] Fix | Delete
__END_DECLS
[83] Fix | Delete
[84] Fix | Delete
#endif /* sys/utsname.h */
[85] Fix | Delete
[86] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function