2008-08-01 22:40:06 +00:00
|
|
|
#ifndef _ARPA_NAMESER_H_
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
#include <resolv/arpa/nameser.h>
|
2006-05-06 08:03:24 +00:00
|
|
|
|
Installed header hygiene (BZ#20366): Test of installed headers.
This adds a test to ensure that the problems fixed in the last several
patches do not recur. Each directory checks the headers that it
installs for two properties: first, each header must be compilable in
isolation, as both C and C++, under a representative combination of
language and library conformance levels; second, there is a blacklist
of identifiers that may not appear in any installed header, currently
consisting of the legacy BSD typedefs. (There is an exemption for the
headers that define those typedefs, and for the RPC headers. It may be
necessary to make this more sophisticated if we add more stuff to the
blacklist in the future.)
In order for this test to work correctly, every wrapper header
that actually defines something must guard those definitions with
#ifndef _ISOMAC. This is the existing mechanism used by the conform/
tests to tell wrapper headers not to define anything that the public
header wouldn't, and not to use anything from libc-symbols.h. conform/
only cares for headers that we need to check for standards conformance,
whereas this test applies to *every* header. (Headers in include/ that
are either installed directly, or are internal-use-only and do *not*
correspond to any installed header, are not affected.)
* scripts/check-installed-headers.sh: New script.
* Rules: In each directory that defines header files to be installed,
run check-installed-headers.sh on them as a special test.
* Makefile: Likewise for the headers installed at top level.
* include/aliases.h, include/alloca.h, include/argz.h
* include/arpa/nameser.h, include/arpa/nameser_compat.h
* include/elf.h, include/envz.h, include/err.h
* include/execinfo.h, include/fpu_control.h, include/getopt.h
* include/gshadow.h, include/ifaddrs.h, include/libintl.h
* include/link.h, include/malloc.h, include/mcheck.h
* include/mntent.h, include/netinet/ether.h
* include/nss.h, include/obstack.h, include/printf.h
* include/pty.h, include/resolv.h, include/rpc/auth.h
* include/rpc/auth_des.h, include/rpc/auth_unix.h
* include/rpc/clnt.h, include/rpc/des_crypt.h
* include/rpc/key_prot.h, include/rpc/netdb.h
* include/rpc/pmap_clnt.h, include/rpc/pmap_prot.h
* include/rpc/pmap_rmt.h, include/rpc/rpc.h
* include/rpc/rpc_msg.h, include/rpc/svc.h
* include/rpc/svc_auth.h, include/rpc/xdr.h
* include/rpcsvc/nis_callback.h, include/rpcsvc/nislib.h
* include/rpcsvc/yp.h, include/rpcsvc/ypclnt.h
* include/rpcsvc/ypupd.h, include/shadow.h
* include/stdio_ext.h, include/sys/epoll.h
* include/sys/file.h, include/sys/gmon.h, include/sys/ioctl.h
* include/sys/prctl.h, include/sys/profil.h
* include/sys/statfs.h, include/sys/sysctl.h
* include/sys/sysinfo.h, include/ttyent.h, include/utmp.h
* sysdeps/arm/nacl/include/bits/setjmp.h
* sysdeps/mips/include/sys/asm.h
* sysdeps/unix/sysv/linux/include/sys/sysinfo.h
* sysdeps/unix/sysv/linux/include/sys/timex.h
* sysdeps/x86/fpu/include/bits/fenv.h:
Add #ifndef _ISOMAC guard around internal declarations.
Add multiple-inclusion guard if not already present.
2016-08-24 01:19:17 +00:00
|
|
|
# ifndef _ISOMAC
|
|
|
|
|
2006-05-06 08:03:24 +00:00
|
|
|
/* If the machine allows unaligned access we can do better than using
|
|
|
|
the NS_GET16, NS_GET32, NS_PUT16, and NS_PUT32 macros from the
|
|
|
|
installed header. */
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
2008-08-01 17:16:31 +00:00
|
|
|
extern const struct _ns_flagdata _ns_flagdata[] attribute_hidden;
|
2006-05-12 04:16:08 +00:00
|
|
|
|
Installed-header hygiene (BZ#20366): obsolete BSD u_* types.
The types u_char, u_short, u_int, u_long, ushort, uint, ulong, u_int8_t,
u_int16_t, u_int32_t, u_int64_t, quad_t, and u_quad_t are BSDisms that
have never been standardized. While glibc should continue to *provide*
these types for compatibility's sake, its public headers should not
use them.
The meat of this change was mechanically generated by the following
shell command:
perl -pi~ -e '
s/\b(__)?u_char\b/unsigned char/g;
s/\b(__)?u_?short\b/unsigned short/g;
s/\b(__)?u_?int\b/unsigned int/g;
s/\b(__)?u_?long\b/unsigned long/g;
s/\b(__)?u_int8_t\b/uint8_t/g;
s/\b(__)?u_int16_t\b/uint16_t/g;
s/\b(__)?u_int32_t\b/uint32_t/g;
s/\b(__)?u_int64_t\b/uint64_t/g;
s/\b(__)?u_quad_t\b/uint64_t/g;
s/\b(__)?quad_t\b/uint64_t/g;
' $(grep -lE -e '\<((__)?(quad_t|u(short|int|long|_(char|short|int([0-9]+_t)?|long|quad_t))))\>' \
$(grep -LE '\<(_(SYS|BITS)_TYPES_H|rpc/(rpc|rpc_msg|types|xdr)\.h)\>' \
$(find . \( -false $(sed 's/^/-o -name /' all-installed-headers) \
\) -printf '%P\n' | sort -u)))
where 'all-installed-headers' was a list of the basenames of all installed
header files, manually extracted from the Makefiles. Non-installed
wrapper headers in include/ are also adjusted, for consistency.
I then manually fixed up indentation and line-wrapping.
sys/types.h and bits/types.h are excluded because they must continue
to define the u_* types (under __USE_MISC) for compatibility with
applications. They do not use these types themselves.
All headers that (transitively) include rpc/types.h are also excluded,
for three reasons. First, the u_* types are defined by rpc/types.h,
unconditionally (not just under __USE_MISC) so they are logically part
of the SunRPC API. Second, many of those headers appear to be
machine-generated. Third, it's my understanding that we are getting
rid of as much of SunRPC as possible in the near future.
(The one file under sunrpc/ that's touched, sunrpc/rpc/rpc_des.h, does
*not* include rpc/types.h. This may itself be a bug.)
After changing from u_intNN_t to uintNN_t, a number of headers now
need to include stdint.h to pick up those types. It might be more
hygenic, namespace-wise, to use __uintNN_t instead, but none of these
headers are bound by ISO or POSIX to do so, and it's unlikely that
anyone using them will be bothered. (The two files that were using
__-prefixed versions of the u_types, sysdeps/mach/hurd/net/route.h and
sysdeps/unix/sysv/linux/net/route.h, both already also contained uses of
the unprefixed versions.)
Some of these files directly included features.h and/or sys/cdefs.h,
which I removed, as the style generally seems to be to let sys/types.h
do that for us. (This does not change the set of definitions exposed
by any header; sys/types.h unconditionally includes both features.h
and sys/cdefs.h.)
One file included asm/types.h unnecessarily.
* bits/in.h, gmon/sys/gmon.h, inet/netinet/igmp.h
* inet/protocols/routed.h, inet/protocols/talkd.h
* inet/protocols/timed.h, io/fts.h, nptl_db/thread_db.h
* resolv/arpa/nameser.h, resolv/resolv.h, sunrpc/rpc/rpc_des.h
* sysdeps/generic/netinet/if_ether.h
* sysdeps/generic/netinet/in_systm.h
* sysdeps/generic/netinet/ip.h, sysdeps/generic/netinet/tcp.h
* sysdeps/gnu/netinet/ip_icmp.h, sysdeps/gnu/netinet/tcp.h
* sysdeps/gnu/netinet/udp.h, sysdeps/mach/hurd/net/ethernet.h
* sysdeps/mach/hurd/net/if_arp.h
* sysdeps/mach/hurd/net/if_ppp.h
* sysdeps/mach/hurd/net/route.h, sysdeps/mach/sys/reboot.h
* sysdeps/unix/sysv/linux/bits/in.h
* sysdeps/unix/sysv/linux/net/ethernet.h
* sysdeps/unix/sysv/linux/net/if_arp.h
* sysdeps/unix/sysv/linux/net/if_ppp.h
* sysdeps/unix/sysv/linux/net/if_shaper.h
* sysdeps/unix/sysv/linux/net/route.h
* sysdeps/unix/sysv/linux/netinet/if_ether.h
* sysdeps/unix/sysv/linux/netinet/if_fddi.h
* sysdeps/unix/sysv/linux/netinet/if_tr.h
* sysdeps/unix/sysv/linux/netipx/ipx.h
* sysdeps/unix/sysv/linux/sys/acct.h
* include/arpa/nameser.h, include/resolv.h:
Change all uses of u_char to unsigned char,
u_short and ushort to unsigned short, u_int and uint to unsigned int,
u_long and ulong to unsigned long, u_int8_t to uint8_t,
u_int16_t to uint16_t, u_int32_t to uint32_t, quad_t to int64_t,
and u_int64_t and u_quad_t to uint64_t.
* mach/sys/reboot.h: Remove two casts of integer literals
to the types they already have.
* bits/in.h: Correct error in description of IP_MULTICAST_LOOP.
* sysdeps/unix/sysv/linux/bits/in.h: Likewise.
* sysdeps/unix/sysv/linux/netinet/if_ether.h: Change a comment
from referring to 'unsigned char' to 'uint8_t' for consistency with
the macro definition below.
* gmon/sys/gmon.h, inet/netinet/igmp.h, inet/protocols/talkd.h
* io/fts.h, resolv/arpa/nameser.h, resolv/resolv.h
* sunrpc/rpc/rpc_des.h, sysdeps/generic/netinet/ip.h
* sysdeps/gnu/netinet/tcp.h, sysdeps/gnu/netinet/udp.h
* sysdeps/mach/hurd/net/if_ppp.h, sysdeps/unix/sysv/linux/net/if_ppp.h
* sysdeps/unix/sysv/linux/sys/acct.h
* include/arpa/nameser.h, include/resolv.h:
Fix indentation disrupted by mechanical edits.
* inet/protocols/talkd.h, resolv/arpa/nameser.h
* sysdeps/generic/netinet/in_systm.h
* sysdeps/gnu/netinet/ip_icmp.h, sysdeps/gnu/netinet/tcp.h
* sysdeps/gnu/netinet/udp.h
* sysdeps/unix/sysv/linux/net/ethernet.h
* sysdeps/unix/sysv/linux/net/if_arp.h
* sysdeps/unix/sysv/linux/net/if_ppp.h
* sysdeps/unix/sysv/linux/net/if_shaper.h
* sysdeps/unix/sysv/linux/netinet/if_fddi.h
* sysdeps/unix/sysv/linux/netinet/if_tr.h
* sysdeps/unix/sysv/linux/netipx/ipx.h
* sysdeps/unix/sysv/linux/sys/acct.h
Include stdint.h for uintNN_t definitions.
Don't include sys/cdefs.h, features.h, or asm/types.h directly.
2016-08-21 19:38:41 +00:00
|
|
|
extern unsigned int __ns_get16 (const unsigned char *) __THROW;
|
|
|
|
extern unsigned long __ns_get32 (const unsigned char *) __THROW;
|
2017-04-04 12:36:02 +00:00
|
|
|
int __ns_name_ntop (const unsigned char *, char *, size_t) __THROW;
|
|
|
|
int __ns_name_unpack (const unsigned char *, const unsigned char *,
|
|
|
|
const unsigned char *, unsigned char *, size_t) __THROW;
|
2008-08-01 17:16:31 +00:00
|
|
|
|
2022-08-30 08:02:49 +00:00
|
|
|
/* Like ns_samename, but for uncompressed binary names. Return true
|
|
|
|
if the two arguments compare are equal as case-insensitive domain
|
|
|
|
names. */
|
|
|
|
_Bool __ns_samebinaryname (const unsigned char *, const unsigned char *)
|
|
|
|
attribute_hidden;
|
|
|
|
|
2008-08-01 17:16:31 +00:00
|
|
|
#define ns_msg_getflag(handle, flag) \
|
|
|
|
(((handle)._flags & _ns_flagdata[flag].mask) >> _ns_flagdata[flag].shift)
|
|
|
|
|
|
|
|
libresolv_hidden_proto (ns_get16)
|
|
|
|
libresolv_hidden_proto (ns_get32)
|
|
|
|
libresolv_hidden_proto (ns_put16)
|
|
|
|
libresolv_hidden_proto (ns_put32)
|
|
|
|
libresolv_hidden_proto (ns_initparse)
|
|
|
|
libresolv_hidden_proto (ns_skiprr)
|
|
|
|
libresolv_hidden_proto (ns_parserr)
|
|
|
|
libresolv_hidden_proto (ns_sprintrr)
|
|
|
|
libresolv_hidden_proto (ns_sprintrrf)
|
|
|
|
libresolv_hidden_proto (ns_samedomain)
|
|
|
|
libresolv_hidden_proto (ns_format_ttl)
|
2008-08-01 22:40:06 +00:00
|
|
|
|
2021-07-19 05:55:27 +00:00
|
|
|
extern __typeof (ns_makecanon) __libc_ns_makecanon;
|
|
|
|
libc_hidden_proto (__libc_ns_makecanon)
|
2021-07-19 05:55:27 +00:00
|
|
|
extern __typeof (ns_name_compress) __ns_name_compress;
|
|
|
|
libc_hidden_proto (__ns_name_compress)
|
2021-07-15 06:28:50 +00:00
|
|
|
extern __typeof (ns_name_ntop) __ns_name_ntop;
|
|
|
|
libc_hidden_proto (__ns_name_ntop)
|
2021-07-19 05:55:27 +00:00
|
|
|
extern __typeof (ns_name_pack) __ns_name_pack;
|
|
|
|
libc_hidden_proto (__ns_name_pack)
|
2021-07-19 05:55:27 +00:00
|
|
|
extern __typeof (ns_name_pton) __ns_name_pton;
|
|
|
|
libc_hidden_proto (__ns_name_pton)
|
2021-07-19 05:55:27 +00:00
|
|
|
extern __typeof (ns_name_skip) __ns_name_skip;
|
|
|
|
libc_hidden_proto (__ns_name_skip)
|
2021-07-19 05:55:27 +00:00
|
|
|
extern __typeof (ns_name_uncompress) __ns_name_uncompress;
|
|
|
|
libc_hidden_proto (__ns_name_uncompress)
|
2021-07-15 06:28:50 +00:00
|
|
|
extern __typeof (ns_name_unpack) __ns_name_unpack;
|
|
|
|
libc_hidden_proto (__ns_name_unpack)
|
2021-07-19 05:55:27 +00:00
|
|
|
extern __typeof (ns_samename) __libc_ns_samename;
|
|
|
|
libc_hidden_proto (__libc_ns_samename)
|
2021-07-15 06:28:50 +00:00
|
|
|
|
2022-08-30 08:02:49 +00:00
|
|
|
/* Packet parser helper functions. */
|
|
|
|
|
|
|
|
/* Verify that P points to an uncompressed domain name in wire format.
|
|
|
|
On success, return the length of the encoded name, including the
|
|
|
|
terminating null byte. On failure, return -1 and set errno. EOM
|
|
|
|
must point one past the last byte in the packet. */
|
|
|
|
int __ns_name_length_uncompressed (const unsigned char *p,
|
|
|
|
const unsigned char *eom) attribute_hidden;
|
resolv: Add DNS packet parsing helpers geared towards wire format
The public parser functions around the ns_rr record type produce
textual domain names, but usually, this is not what we need while
parsing DNS packets within glibc. This commit adds two new helper
functions, __ns_rr_cursor_init and __ns_rr_cursor_next, for writing
packet parsers, and struct ns_rr_cursor, struct ns_rr_wire as
supporting types.
In theory, it is possible to avoid copying the owner name
into the rname field in __ns_rr_cursor_next, but this would need
more functions that work on compressed names.
Eventually, __res_context_send could be enhanced to preserve the
result of the packet parsing that is necessary for matching the
incoming UDP packets, so that this works does not have to be done
twice.
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
2022-08-30 08:02:49 +00:00
|
|
|
|
|
|
|
/* Iterator over the resource records in a DNS packet. */
|
|
|
|
struct ns_rr_cursor
|
|
|
|
{
|
|
|
|
/* These members are not changed after initialization. */
|
|
|
|
const unsigned char *begin; /* First byte of packet. */
|
|
|
|
const unsigned char *end; /* One past the last byte of the packet. */
|
|
|
|
const unsigned char *first_rr; /* First resource record (or packet end). */
|
|
|
|
|
|
|
|
/* Advanced towards the end while reading the packet. */
|
|
|
|
const unsigned char *current;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Returns the RCODE field from the DNS header. */
|
|
|
|
static inline int
|
|
|
|
ns_rr_cursor_rcode (const struct ns_rr_cursor *c)
|
|
|
|
{
|
|
|
|
return c->begin[3] & 0x0f; /* Lower 4 bits at offset 3. */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns the length of the answer section according to the DNS header. */
|
|
|
|
static inline int
|
|
|
|
ns_rr_cursor_ancount (const struct ns_rr_cursor *c)
|
|
|
|
{
|
|
|
|
return c->begin[6] * 256 + c->begin[7]; /* 16 bits at offset 6. */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns the length of the authority (name server) section according
|
|
|
|
to the DNS header. */
|
|
|
|
static inline int
|
|
|
|
ns_rr_cursor_nscount (const struct ns_rr_cursor *c)
|
|
|
|
{
|
|
|
|
return c->begin[8] * 256 + c->begin[9]; /* 16 bits at offset 8. */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns the length of the additional data section according to the
|
|
|
|
DNS header. */
|
|
|
|
static inline int
|
|
|
|
ns_rr_cursor_adcount (const struct ns_rr_cursor *c)
|
|
|
|
{
|
|
|
|
return c->begin[10] * 256 + c->begin[11]; /* 16 bits at offset 10. */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns a pointer to the uncompressed question name in wire
|
|
|
|
format. */
|
|
|
|
static inline const unsigned char *
|
|
|
|
ns_rr_cursor_qname (const struct ns_rr_cursor *c)
|
|
|
|
{
|
|
|
|
return c->begin + 12; /* QNAME starts right after the header. */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns the question type of the first and only question. */
|
|
|
|
static inline const int
|
|
|
|
ns_rr_cursor_qtype (const struct ns_rr_cursor *c)
|
|
|
|
{
|
|
|
|
/* 16 bits 4 bytes back from the first RR header start. */
|
|
|
|
return c->first_rr[-4] * 256 + c->first_rr[-3];
|
|
|
|
}
|
|
|
|
|
2023-05-20 13:37:47 +00:00
|
|
|
/* Returns the clss of the first and only question (usually C_IN). */
|
resolv: Add DNS packet parsing helpers geared towards wire format
The public parser functions around the ns_rr record type produce
textual domain names, but usually, this is not what we need while
parsing DNS packets within glibc. This commit adds two new helper
functions, __ns_rr_cursor_init and __ns_rr_cursor_next, for writing
packet parsers, and struct ns_rr_cursor, struct ns_rr_wire as
supporting types.
In theory, it is possible to avoid copying the owner name
into the rname field in __ns_rr_cursor_next, but this would need
more functions that work on compressed names.
Eventually, __res_context_send could be enhanced to preserve the
result of the packet parsing that is necessary for matching the
incoming UDP packets, so that this works does not have to be done
twice.
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
2022-08-30 08:02:49 +00:00
|
|
|
static inline const int
|
|
|
|
ns_rr_cursor_qclass (const struct ns_rr_cursor *c)
|
|
|
|
{
|
|
|
|
/* 16 bits 2 bytes back from the first RR header start. */
|
|
|
|
return c->first_rr[-2] * 256 + c->first_rr[-1];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initializes *C to cover the packet [BUF, BUF+LEN). Returns false
|
|
|
|
if LEN is less than sizeof (*HD), if the packet does not contain a
|
|
|
|
full (uncompressed) question, or if the question count is not 1. */
|
|
|
|
_Bool __ns_rr_cursor_init (struct ns_rr_cursor *c,
|
|
|
|
const unsigned char *buf, size_t len)
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
/* Like ns_rr, but the record owner name is not decoded into text format. */
|
|
|
|
struct ns_rr_wire
|
|
|
|
{
|
|
|
|
unsigned char rname[NS_MAXCDNAME]; /* Owner name of the record. */
|
|
|
|
uint16_t rtype; /* Resource record type (T_*). */
|
|
|
|
uint16_t rclass; /* Resource record class (C_*). */
|
|
|
|
uint32_t ttl; /* Time-to-live field. */
|
|
|
|
const unsigned char *rdata; /* Start of resource record data. */
|
|
|
|
uint16_t rdlength; /* Length of the data at rdata, in bytes. */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Attempts to parse the record at C into *RR. On success, return
|
|
|
|
true, and C is advanced past the record, and RR->rdata points to
|
|
|
|
the record data. On failure, errno is set to EMSGSIZE, and false
|
|
|
|
is returned. */
|
|
|
|
_Bool __ns_rr_cursor_next (struct ns_rr_cursor *c, struct ns_rr_wire *rr)
|
|
|
|
attribute_hidden;
|
|
|
|
|
Installed header hygiene (BZ#20366): Test of installed headers.
This adds a test to ensure that the problems fixed in the last several
patches do not recur. Each directory checks the headers that it
installs for two properties: first, each header must be compilable in
isolation, as both C and C++, under a representative combination of
language and library conformance levels; second, there is a blacklist
of identifiers that may not appear in any installed header, currently
consisting of the legacy BSD typedefs. (There is an exemption for the
headers that define those typedefs, and for the RPC headers. It may be
necessary to make this more sophisticated if we add more stuff to the
blacklist in the future.)
In order for this test to work correctly, every wrapper header
that actually defines something must guard those definitions with
#ifndef _ISOMAC. This is the existing mechanism used by the conform/
tests to tell wrapper headers not to define anything that the public
header wouldn't, and not to use anything from libc-symbols.h. conform/
only cares for headers that we need to check for standards conformance,
whereas this test applies to *every* header. (Headers in include/ that
are either installed directly, or are internal-use-only and do *not*
correspond to any installed header, are not affected.)
* scripts/check-installed-headers.sh: New script.
* Rules: In each directory that defines header files to be installed,
run check-installed-headers.sh on them as a special test.
* Makefile: Likewise for the headers installed at top level.
* include/aliases.h, include/alloca.h, include/argz.h
* include/arpa/nameser.h, include/arpa/nameser_compat.h
* include/elf.h, include/envz.h, include/err.h
* include/execinfo.h, include/fpu_control.h, include/getopt.h
* include/gshadow.h, include/ifaddrs.h, include/libintl.h
* include/link.h, include/malloc.h, include/mcheck.h
* include/mntent.h, include/netinet/ether.h
* include/nss.h, include/obstack.h, include/printf.h
* include/pty.h, include/resolv.h, include/rpc/auth.h
* include/rpc/auth_des.h, include/rpc/auth_unix.h
* include/rpc/clnt.h, include/rpc/des_crypt.h
* include/rpc/key_prot.h, include/rpc/netdb.h
* include/rpc/pmap_clnt.h, include/rpc/pmap_prot.h
* include/rpc/pmap_rmt.h, include/rpc/rpc.h
* include/rpc/rpc_msg.h, include/rpc/svc.h
* include/rpc/svc_auth.h, include/rpc/xdr.h
* include/rpcsvc/nis_callback.h, include/rpcsvc/nislib.h
* include/rpcsvc/yp.h, include/rpcsvc/ypclnt.h
* include/rpcsvc/ypupd.h, include/shadow.h
* include/stdio_ext.h, include/sys/epoll.h
* include/sys/file.h, include/sys/gmon.h, include/sys/ioctl.h
* include/sys/prctl.h, include/sys/profil.h
* include/sys/statfs.h, include/sys/sysctl.h
* include/sys/sysinfo.h, include/ttyent.h, include/utmp.h
* sysdeps/arm/nacl/include/bits/setjmp.h
* sysdeps/mips/include/sys/asm.h
* sysdeps/unix/sysv/linux/include/sys/sysinfo.h
* sysdeps/unix/sysv/linux/include/sys/timex.h
* sysdeps/x86/fpu/include/bits/fenv.h:
Add #ifndef _ISOMAC guard around internal declarations.
Add multiple-inclusion guard if not already present.
2016-08-24 01:19:17 +00:00
|
|
|
# endif /* !_ISOMAC */
|
2008-08-01 22:40:06 +00:00
|
|
|
#endif
|