From 8b75e5c1197621b29ec2924cdd90f88b1e71ce3b Mon Sep 17 00:00:00 2001 From: Bo Yang Date: Tue, 5 Mar 2019 14:27:35 -0800 Subject: Add _XOPEN_SOURCE to amalgamate.py --- tools/amalgamate.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') diff --git a/tools/amalgamate.py b/tools/amalgamate.py index 038c83f..c4c8a1b 100755 --- a/tools/amalgamate.py +++ b/tools/amalgamate.py @@ -17,6 +17,7 @@ class Amalgamator: self.output_c = open(output_path + "upb.c", "w") self.output_c.write("/* Amalgamated source file */\n") + self.output_c.write('#define _XOPEN_SOURCE 700\n') self.output_c.write('#include "upb.h"\n') self.output_c.write(open("upb/port_def.inc").read()) -- cgit v1.2.3