From a43a2f0662c4aa33b50882411181252198819942 Mon Sep 17 00:00:00 2001 From: Michal Krol Date: Fri, 20 Aug 2010 18:51:22 +0200 Subject: util: Fix build for C++ compilers. --- src/gallium/auxiliary/util/u_debug_describe.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/gallium/auxiliary/util/u_debug_describe.h') diff --git a/src/gallium/auxiliary/util/u_debug_describe.h b/src/gallium/auxiliary/util/u_debug_describe.h index cab614bdc2..8c32f02ee5 100644 --- a/src/gallium/auxiliary/util/u_debug_describe.h +++ b/src/gallium/auxiliary/util/u_debug_describe.h @@ -1,10 +1,18 @@ #ifndef U_DEBUG_DESCRIBE_H_ #define U_DEBUG_DESCRIBE_H_ +#ifdef __cplusplus +extern "C" { +#endif + /* a 256-byte buffer is necessary and sufficient */ void debug_describe_reference(char* buf, const struct pipe_reference*ptr); void debug_describe_resource(char* buf, const struct pipe_resource *ptr); void debug_describe_surface(char* buf, const struct pipe_surface *ptr); void debug_describe_sampler_view(char* buf, const struct pipe_sampler_view *ptr); +#ifdef __cplusplus +} +#endif + #endif /* U_DEBUG_DESCRIBE_H_ */ -- cgit v1.2.3