From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 1A74C1F56B for ; Mon, 4 Sep 2023 10:36:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1693823769; bh=Gn9mIgprOoCT1JD/oNxKB76gi4WxrZmU8b5aFLSywL0=; h=From:To:Subject:Date:In-Reply-To:References:From; b=oHlIsEkwnk7CXT5hDxNXA44r+yb2vwbnQqcC3tHVTVQr/1AkEw1EwAgId7jAIZtXj jxI3tuxlMeV1CbLfnV16CclXyt60jRo+fUscVwbNJZWRMwDoPpyn9iERtwAq7j36mV N/W8Olaf8CJeSO0AJ93W70Tm78z6TABuDaqnmA7I= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 08/10] xap_helper.h: include signal.h for sig* functions Date: Mon, 4 Sep 2023 10:36:05 +0000 Message-ID: <20230904103607.1940839-9-e@80x24.org> In-Reply-To: <20230904103607.1940839-1-e@80x24.org> References: <20230904103607.1940839-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This is documented by all sig* manpages of FreeBSD and Linux, but only OpenBSD fails to build without this header. --- lib/PublicInbox/xap_helper.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/PublicInbox/xap_helper.h b/lib/PublicInbox/xap_helper.h index 493a24f4..0f16d316 100644 --- a/lib/PublicInbox/xap_helper.h +++ b/lib/PublicInbox/xap_helper.h @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include