tools/cpuflags.c
branchpyrit
changeset 103 3b3257a410fe
parent 70 4b84e90325c5
--- a/tools/cpuflags.c	Mon Sep 08 20:14:24 2014 +0200
+++ b/tools/cpuflags.c	Tue Jul 26 17:41:36 2016 +0200
@@ -81,7 +81,7 @@
 
 
 /* cpuid, from kernel source ( linux/include/asm-i386/processor.h ) */
-inline void cpuid(int op, int *eax, int *ebx, int *ecx, int *edx)
+void cpuid(int op, int *eax, int *ebx, int *ecx, int *edx)
 {
    __asm__("cpuid" : "=a" (*eax), "=b" (*ebx), "=c" (*ecx), "=d" (*edx) : "a" (op));
 }