From 2c8da324844b7ac95b39077efa1af762a22bf619 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Sun, 17 Apr 2016 12:29:24 +0100 Subject: [PATCH] utils: move include directives before extern "C" wrapper Analogous to last two commits. Signed-off-by: Emil Velikov Reviewed-by: Pekka Paalanen Reviewed-by: Quentin Glidic --- src/wayland-util.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wayland-util.h b/src/wayland-util.h index 35b50ea7..cc1999d6 100644 --- a/src/wayland-util.h +++ b/src/wayland-util.h @@ -31,15 +31,15 @@ #ifndef WAYLAND_UTIL_H #define WAYLAND_UTIL_H -#ifdef __cplusplus -extern "C" { -#endif - #include #include #include #include +#ifdef __cplusplus +extern "C" { +#endif + /* GCC visibility */ #if defined(__GNUC__) && __GNUC__ >= 4 #define WL_EXPORT __attribute__ ((visibility("default")))