From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x42e.google.com (mail-wr1-x42e.google.com [IPv6:2a00:1450:4864:20::42e]) by sourceware.org (Postfix) with ESMTPS id E9E4E39888A5 for ; Mon, 10 May 2021 17:57:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E9E4E39888A5 Received: by mail-wr1-x42e.google.com with SMTP id n2so17589563wrm.0 for ; Mon, 10 May 2021 10:57:06 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=/UROc8n6DFYkbl6R3xqr4P0JOQRKno35aghTJ7OxkAQ=; b=WiZ1kpsr38FaEZc6e0Dp6phiXGXAkxla6fgivRhnyA/EOMI4I5I3jEK6meCdJHfwZY KTXX2OqP6RsL2/zis/w+7y9YSp2/Um9n33YYzVe+5mTm5lT9F5CAyQ16pdVGyd4Wp6BP EtKS8dK3sDfdz5/OmlMS4LxZJkWQEUfd+TQXF1ygooLU/TzJv5qYqyK29rvk8fb8bcM1 mJRkVCdYTjbABpXnYXCaoa5VK52zpbZmf+iq/UNnySb82Y8rwzhhLv/jywRLslbx+0Qm sr969aulBD3xu8tby+UO5WfVg8I7E06E1UINhImMaBJoQ+2kL/DMTEf/258SjG34kuXj CqNg== X-Gm-Message-State: AOAM533/2sQBlXdhq0u1auQ3jpYEX+b8V57191txCZjD8MfXikSvBfb4 501wFZL+e6mA6GeExXq+aQU= X-Google-Smtp-Source: ABdhPJz7kdCDk8eQB2qTNg2/J+AyhjKFkAz+iph1RVN1mM1/Jy65B/V9de3/o9liW4DCDETG69c9qQ== X-Received: by 2002:adf:dd4f:: with SMTP id u15mr33329025wrm.308.1620669426119; Mon, 10 May 2021 10:57:06 -0700 (PDT) Received: from sqli.sqli.com ([195.53.121.100]) by smtp.googlemail.com with ESMTPSA id m13sm24318830wrw.86.2021.05.10.10.57.04 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 10 May 2021 10:57:05 -0700 (PDT) From: Alejandro Colomar To: mtk.manpages@gmail.com Cc: Florian Weimer , Jakub Wilk , Alejandro Colomar , linux-man@vger.kernel.org, libc-alpha@sourceware.org Subject: [PATCH 34/39] poll.2: Remove Date: Mon, 10 May 2021 19:55:43 +0200 Message-Id: <20210510175546.28445-35-alx.manpages@gmail.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210510175546.28445-1-alx.manpages@gmail.com> References: <20210510175546.28445-1-alx.manpages@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 May 2021 17:57:08 -0000 It is only used for providing 'sigset_t'. We're only documenting (with some exceptions) the includes needed for constants and the prototype itself. And 'sigset_t' is better documented in system_data_types(7). Remove that include. Signed-off-by: Alejandro Colomar --- man2/poll.2 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/man2/poll.2 b/man2/poll.2 index 8622e7c7a..205468f3e 100644 --- a/man2/poll.2 +++ b/man2/poll.2 @@ -37,11 +37,10 @@ poll, ppoll \- wait for some event on a file descriptor .BI "int poll(struct pollfd *" fds ", nfds_t " nfds ", int " timeout ); .PP .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" -.B #include .B #include .PP .BI "int ppoll(struct pollfd *" fds ", nfds_t " nfds , -.BI " const struct timespec *" tmo_p ", const sigset_t *" sigmask ); +.BI " const struct timespec *" tmo_p ", const sigset_t *" sigmask ); .fi .SH DESCRIPTION .BR poll () -- 2.31.1