From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.2 Received: (qmail 3258 invoked from network); 3 Apr 2020 10:30:44 -0000 Received: from bsd.lv (HELO mandoc.bsd.lv) (66.111.2.12) by inbox.vuxu.org with UTF8ESMTPZ; 3 Apr 2020 10:30:44 -0000 Received: from fantadrom.bsd.lv (localhost [127.0.0.1]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id 3dbab05a for ; Fri, 3 Apr 2020 05:30:39 -0500 (EST) Received: from localhost (mandoc.bsd.lv [local]) by mandoc.bsd.lv (OpenSMTPD) with ESMTPA id 720adac2 for ; Fri, 3 Apr 2020 05:30:39 -0500 (EST) Date: Fri, 3 Apr 2020 05:30:39 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: #include because that is needed before #include X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: <11ff31cef46f96c2@mandoc.bsd.lv> Log Message: ----------- #include because that is needed before #include ; fixing a build failure of mandoc-portable on Arch Linux reported by Stephen Gregoratto . Modified Files: -------------- mandoc: tag.c Revision Data ------------- Index: tag.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/tag.c,v retrieving revision 1.31 retrieving revision 1.32 diff -Ltag.c -Ltag.c -u -p -r1.31 -r1.32 --- tag.c +++ tag.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv