From: Frédéric Bérat Date: Tue, 11 Mar 2025 09:40:11 +0000 (+0100) Subject: Add missing guards in include/arpa/inet.h X-Git-Tag: glibc-2.42~380 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cdb99d8bb9d0008b2b297080e61d6c10dd66cc8;p=thirdparty%2Fglibc.git Add missing guards in include/arpa/inet.h Add the missing guards in the header, similarly to other headers at the same level Reviewed-by: Florian Weimer --- diff --git a/include/arpa/inet.h b/include/arpa/inet.h index d1ea13bb19..d9e55a3c7f 100644 --- a/include/arpa/inet.h +++ b/include/arpa/inet.h @@ -1,3 +1,5 @@ +#ifndef _ARPA_INET_H +/* Note: _ARPA_INET_H is defined by inet/arpa/inet.h below. */ #include #ifndef _ISOMAC @@ -17,3 +19,4 @@ libc_hidden_proto (inet_netof) extern __typeof (inet_network) __inet_network; libc_hidden_proto (__inet_network) #endif +#endif