diff options
author | Emil Velikov <[email protected]> | 2016-10-11 18:26:21 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-10-14 11:53:34 +0100 |
commit | 0d86c92dcb7f918b00a1c96e2cb220e21da30d83 (patch) | |
tree | 8f617193d32294904df11d88a626a1c954389ac8 /src/intel/blorp/blorp.h | |
parent | 3a98bffa5924d5e7d078268cfe5a42c9f58f0470 (diff) |
intel/blorp: use correct header guards
Avoid the discouraged use of pragma once and a missing guard for
blorp_genX_exec.h.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/intel/blorp/blorp.h')
-rw-r--r-- | src/intel/blorp/blorp.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/intel/blorp/blorp.h b/src/intel/blorp/blorp.h index 480f1bb104f..aa52976bd95 100644 --- a/src/intel/blorp/blorp.h +++ b/src/intel/blorp/blorp.h @@ -21,7 +21,8 @@ * IN THE SOFTWARE. */ -#pragma once +#ifndef BLORP_H +#define BLORP_H #include <stdint.h> #include <stdbool.h> @@ -162,3 +163,5 @@ blorp_gen6_hiz_op(struct blorp_batch *batch, #ifdef __cplusplus } /* end extern "C" */ #endif /* __cplusplus */ + +#endif /* BLORP_H */ |