From patchwork Thu Mar 7 08:28:01 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcus Haehnel X-Patchwork-Id: 1909129 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=kernkonzept.com header.i=@kernkonzept.com header.a=rsa-sha256 header.s=mx1 header.b=N2gmWUKo; dkim-atps=neutral Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=uclibc-ng.org (client-ip=2a00:1828:2000:679::23; helo=helium.openadk.org; envelope-from=devel-bounces@uclibc-ng.org; receiver=patchwork.ozlabs.org) Received: from helium.openadk.org (helium.openadk.org [IPv6:2a00:1828:2000:679::23]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4Tr2Wm0CVnz1yX3 for ; Thu, 7 Mar 2024 19:28:52 +1100 (AEDT) Received: from helium.openadk.org (localhost [IPv6:::1]) by helium.openadk.org (Postfix) with ESMTP id 4C33135349A4; Thu, 7 Mar 2024 09:28:39 +0100 (CET) Authentication-Results: helium.openadk.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=kernkonzept.com header.i=@kernkonzept.com header.a=rsa-sha256 header.s=mx1 header.b=N2gmWUKo; dkim-atps=neutral Received: from mx.kernkonzept.com (serv1.kernkonzept.com [159.69.200.6]) by helium.openadk.org (Postfix) with ESMTPS id CFBCD3521149 for ; Thu, 7 Mar 2024 09:27:59 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=kernkonzept.com; s=mx1; h=Content-Transfer-Encoding:MIME-Version:Message-ID :Date:Subject:Cc:To:From:References:In-Reply-To:Reply-To:Content-Type: Content-ID:Content-Description; bh=YuzBauyvlSVtl/9G0wkdyFdZ3CNV1sSMDbF+jpitauM=; b=N2gmWUKo8Ir0sHxXn/CxkevsUJ jw+nVdGxmsKuEjccGaZD/6GHUYHrz/ZIAiFdT1gnWpcLPWTOQdKXHCnnkfa711t6apSf+/MwFDAu5 WQRlpkOWNf0Nm+KKg2RB2Tb1jenSjioJIrmhiTjw4JZNr8nNn9JpJ8BqlASwofrMhuUH2OlDmhITe TEBRfN4ZNmV3cmvXnxlP+bqNxpsiJzCeIXhMs4w657Q9b3qkEW6odv2f6ub4Rp0ePrhWaDxjGbwiT 9FxXvd66KoAk1M3JVNGPx0fAL0XYA1PIYbN6hCrymKzyKo0w1fBnK5zgypm52tgeRpRLaz31KCpCl nopRXp9A==; Received: from [10.22.3.160] (helo=amethyst.dd1.int.kernkonzept.com) by mx.kernkonzept.com with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.96) id 1ri96d-003I5F-0T; Thu, 07 Mar 2024 09:27:59 +0100 From: Marcus Haehnel To: devel@uclibc-ng.org Date: Thu, 7 Mar 2024 09:28:01 +0100 Message-ID: <20240307082801.6224-1-marcus.haehnel@kernkonzept.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Message-ID-Hash: JZFX3BHPSCZVZQDQZ7QDNIU4A7HU4SMN X-Message-ID-Hash: JZFX3BHPSCZVZQDQZ7QDNIU4A7HU4SMN X-MailFrom: marcus.haehnel@kernkonzept.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Marcus Haehnel X-Mailman-Version: 3.3.3 Precedence: list Subject: [uclibc-ng-devel] [PATCH] libpthread/linuxthreads: add missing string.h include in condvar.c List-Id: uClibc-ng Development Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Quelches a compiler warning by that memset was implicitly declared. --- libpthread/linuxthreads/condvar.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libpthread/linuxthreads/condvar.c b/libpthread/linuxthreads/condvar.c index 027aa8fc3..01359ac83 100644 --- a/libpthread/linuxthreads/condvar.c +++ b/libpthread/linuxthreads/condvar.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include "pthread.h" #include "internals.h"