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=-0.0 required=5.0 tests=T_SCC_BODY_TEXT_LINE, UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 21082 invoked from network); 21 Jun 2022 10:34:47 -0000 Received: from bsd.lv (HELO mandoc.bsd.lv) (66.111.2.12) by inbox.vuxu.org with ESMTPUTF8; 21 Jun 2022 10:34:47 -0000 Received: from fantadrom.bsd.lv (localhost [127.0.0.1]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id 884a5e83 for ; Tue, 21 Jun 2022 05:34:45 -0500 (EST) Received: from localhost (mandoc.bsd.lv [local]) by mandoc.bsd.lv (OpenSMTPD) with ESMTPA id dda9ed58 for ; Tue, 21 Jun 2022 05:34:45 -0500 (EST) Date: Tue, 21 Jun 2022 05:34:45 -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 , needed for NULL; bug reported by op@ X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: <3365cb7869af3d1c@mandoc.bsd.lv> Log Message: ----------- #include , needed for NULL; bug reported by op@ Modified Files: -------------- mandoc: compat_strsep.c Revision Data ------------- Index: compat_strsep.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/compat_strsep.c,v retrieving revision 1.5 retrieving revision 1.6 diff -Lcompat_strsep.c -Lcompat_strsep.c -u -p -r1.5 -r1.6 --- compat_strsep.c +++ compat_strsep.c @@ -31,6 +31,8 @@ */ #include "config.h" +#include + /* * Get next token from string *stringp, where tokens are possibly-empty * strings separated by characters from delim. -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv