Browse Source

Removed MSVC cpuid func when using clang.

tags/v0.2.15^2
Hank Anderson 11 years ago
parent
commit
e19bf3a28b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cpuid_x86.c

+ 1
- 1
cpuid_x86.c View File

@@ -59,7 +59,7 @@
#endif
*/

#ifdef _MSC_VER
#if defined(_MSC_VER) && !defined(__clang__)

void cpuid(int op, int *eax, int *ebx, int *ecx, int *edx)
{


Loading…
Cancel
Save