From: Adhemerval Zanella Date: Thu, 10 Mar 2022 19:45:58 +0000 (-0300) Subject: support: Remove unused extract_8 function X-Git-Tag: glibc-2.36~457 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2a16484a750361974ffb7a4faa22bec7afda2f46;p=thirdparty%2Fglibc.git support: Remove unused extract_8 function --- diff --git a/support/support_format_dns_packet.c b/support/support_format_dns_packet.c index 8ed234603ea..e8b3c125e3d 100644 --- a/support/support_format_dns_packet.c +++ b/support/support_format_dns_packet.c @@ -31,17 +31,6 @@ struct in_buffer size_t size; }; -static inline bool -extract_8 (struct in_buffer *in, unsigned char *value) -{ - if (in->size == 0) - return false; - *value = in->data[0]; - ++in->data; - --in->size; - return true; -} - static inline bool extract_16 (struct in_buffer *in, unsigned short *value) {