From: Patrick Ohly Date: Fri, 20 Jun 2014 08:31:01 +0000 (+0200) Subject: fix Python.h include order X-Git-Tag: upstream/20140919~1^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2d5379bee5e737a0873b7c88e84fbfeca65c47ab;p=contrib%2Fpycrosswalk.git fix Python.h include order Python.h must be included before system headers to avoid preprocessor warnings (see https://docs.python.org/2/extending/extending.html). Signed-off-by: Patrick Ohly --- diff --git a/src/pycrosswalk.c b/src/pycrosswalk.c index 6548027..6c73ed8 100644 --- a/src/pycrosswalk.c +++ b/src/pycrosswalk.c @@ -2,13 +2,14 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include + #include #include #include #include #include -#include #include #include "xwalk/XW_Extension.h"