From 3ce653bb742bb2f4ca5d59255fe35c3ec834e615 Mon Sep 17 00:00:00 2001 From: Mike Lowis Date: Tue, 18 Oct 2016 08:23:47 -0400 Subject: [PATCH] fixed compiler warning --- utf8.c | 1 + 1 file changed, 1 insertion(+) diff --git a/utf8.c b/utf8.c index 8541b4e..824da09 100644 --- a/utf8.c +++ b/utf8.c @@ -4,6 +4,7 @@ @license BSD 2-clause License */ #include "edit.h" +#define __USE_XOPEN #include const uint8_t UTF8_SeqBits[] = { 0x00u, 0x80u, 0xC0u, 0xE0u, 0xF0u, 0xF8u, 0xFCu, 0xFEu }; -- 2.49.0