From: Brian Date: Tue, 18 Mar 2008 22:59:46 +0000 (-0600) Subject: gallium: protect against multi-#include X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=18f9fa9e71abdd999e49ef78729bfe3d92304312;p=mesa.git gallium: protect against multi-#include --- diff --git a/src/gallium/auxiliary/util/u_pack_color.h b/src/gallium/auxiliary/util/u_pack_color.h index 93a18c1c7e0..cd13823985e 100644 --- a/src/gallium/auxiliary/util/u_pack_color.h +++ b/src/gallium/auxiliary/util/u_pack_color.h @@ -31,7 +31,12 @@ */ +#ifndef U_PACK_COLOR_H +#define U_PACK_COLOR_H + + #include "pipe/p_compiler.h" +#include "pipe/p_format.h" /** @@ -123,3 +128,6 @@ util_pack_z(enum pipe_format format, double z) return 0; } } + + +#endif /* U_PACK_COLOR_H */