From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, FREEMAIL_FROM,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 11367 invoked from network); 19 May 2022 10:57:36 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 19 May 2022 10:57:36 -0000 Received: (qmail 3684 invoked by uid 550); 19 May 2022 10:57:33 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 9998 invoked from network); 19 May 2022 06:28:53 -0000 Date: Thu, 19 May 2022 06:28:39 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1652941722; x=1653200922; bh=JpFBRMzZCNueK9S1g5QFTqsGc3g7uOXZnSVegp7PIb4=; h=Date:To:From:Reply-To:Subject:Message-ID:Feedback-ID:From:To:Cc: Date:Subject:Reply-To:Feedback-ID:Message-ID; b=yUZ7BgTqUlvn9ZbgBpFXVoEfZ/c2L9J1sLq4ezs/7PmTfJ97H5QiaLej+YBbdX3F2 kMZBm5vwiHsAE+g8aYGhy/ius86879CSDwEESwUscq/Jn/QKEcSRLKowI7b7/OgE0X F8DflNnVFmBirhG1uq8vA/BB2WdLGz+u+Tnhp82Yr8GiZeC1xU6ziBlwVKQsvsciWg ozLH67dz+mVrPp2iX0oAEqbPjwpa/cR9jpC+cnJ+T7rIz/tbqsqSR9N0bAY17Jh1+2 Xde++UQMM2CoOdXJlnVrp4UMa+2MHyL5JNeVViuoGeL9Ru9mm8TrMMkSqjNP82wpO3 ejQKWCnRf4Xtg== To: "musl@lists.openwall.com" From: Michael Pratt Message-ID: <3acb4Qdg1Sj7Ro9DeRutBrZtovJCDXilSiB5LUjj67AoOn4jfB5FLplusQY_ycsEx0yj544pFMUo-tT6A9TLDjTm5PHMFEogVXuvVBW6Q3o=@protonmail.com> Feedback-ID: 27397386:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: [musl] [PATCH] strings.h: add missing features.h include directive From: Michael Pratt Date: Wed, 18 May 2022 23:13:23 -0400 Subject: [PATCH] strings.h: add missing features.h include directive To: musl@lists.openwall.com it seems that there should be an include directive of features.h here otherwise it wouldn't be possible to include the functions ffs, ffsl, ffsll by using the header strings.h alone Signed-off-by: Michael Pratt --- include/strings.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/strings.h b/include/strings.h index db0960b4..b7a5ea08 100644 --- a/include/strings.h +++ b/include/strings.h @@ -5,6 +5,7 @@ extern "C" { #endif +#include #define __NEED_size_t #define __NEED_locale_t -- 2.30.2