| 1 | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// |
|---|---|
| 2 | //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// |
| 3 | #pragma once |
| 4 | |
| 5 | // This file's only purpose is to serve as an include guard for cpuid.h by checking for two of it's internal macros |
| 6 | #if !(defined(__cpuid) && defined(__cpuid_count)) |
| 7 | #if !BS_SBGEN |
| 8 | #include "cpuid.h" |
| 9 | #endif |
| 10 | #endif |
| 11 |