diff options
author | Brian <[email protected]> | 2008-03-18 16:59:46 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-03-18 17:18:10 -0600 |
commit | 18f9fa9e71abdd999e49ef78729bfe3d92304312 (patch) | |
tree | 4a2e2a43ab09798c17055ce06f1c8b732aa56725 /src | |
parent | 8de9503d5d290c475a1940a71e58086ab3735f83 (diff) |
gallium: protect against multi-#include
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_pack_color.h | 8 |
1 files changed, 8 insertions, 0 deletions
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 */ |