scdoc2mdoc

A fork of scdoc to output mdoc(7)
git clone git://git.sgregoratto.me/scdoc2mdoc
Log | Files | Refs | README | LICENSE

commit cfce16726b8bd57926dde0a9e99782689b96a7e6
parent 05ca9f20a8229a96f319eda99f0cfd725a51d3cb
Author: Stephen Gregoratto <dev@sgregoratto.me>
Date:   Thu, 22 Nov 2018 01:02:10 +1100

Redefine _XOPEN_SOURCE to value 600.

Fixes build errors on (Open|Free)BSD and Solaris.

Diffstat:
Msrc/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.c b/src/main.c @@ -1,4 +1,4 @@ -#define _XOPEN_SOURCE +#define _XOPEN_SOURCE 600 #include <assert.h> #include <ctype.h> #include <stdbool.h>