From: Emil Velikov Date: Thu, 17 Sep 2015 15:03:48 +0000 (+0100) Subject: nir: move stdio.h inclusion before extern C X-Git-Tag: upstream/17.1.0~15992 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bdb1faf44eac0128baaab62bd4c425c7c3424299;p=platform%2Fupstream%2Fmesa.git nir: move stdio.h inclusion before extern C Signed-off-by: Emil Velikov Tested-by: Gottfried Haider Reviewed-by: Timothy Arceri --- diff --git a/src/glsl/nir/nir_types.h b/src/glsl/nir/nir_types.h index a8ff8f2..bf2faf4 100644 --- a/src/glsl/nir/nir_types.h +++ b/src/glsl/nir/nir_types.h @@ -27,6 +27,8 @@ #pragma once +#include + /* C wrapper around glsl_types.h */ #include "../glsl_types.h" @@ -37,8 +39,6 @@ extern "C" { struct glsl_type; #endif -#include - void glsl_print_type(const struct glsl_type *type, FILE *fp); void glsl_print_struct(const struct glsl_type *type, FILE *fp);