diff options
author | Edward O'Callaghan <[email protected]> | 2016-10-07 22:19:19 +1100 |
---|---|---|
committer | Edward O'Callaghan <[email protected]> | 2016-10-10 16:10:56 +1100 |
commit | ba43768a1e9740076825a873001e1d7a3259742b (patch) | |
tree | 078bf5c9a9c0e9ae491d2ca31eb7ec21fada5362 /src/amd/vulkan/radv_util.h | |
parent | 2d7e0f35c54f49c3280eea308a652253cb3bde46 (diff) |
radv: Use proper header guards over 'pragma once' directives
Signed-off-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_util.h')
-rw-r--r-- | src/amd/vulkan/radv_util.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_util.h b/src/amd/vulkan/radv_util.h index 57a4c95adb6..2b004889214 100644 --- a/src/amd/vulkan/radv_util.h +++ b/src/amd/vulkan/radv_util.h @@ -1,4 +1,5 @@ -#pragma once +#ifndef RADV_UTIL_H +#define RADV_UTIL_H #ifdef HAVE___BUILTIN_POPCOUNT #define util_bitcount(i) __builtin_popcount(i) @@ -7,3 +8,4 @@ extern unsigned int util_bitcount(unsigned int n); #endif +#endif /* RADV_UTIL_H */ |