]> granicus.if.org Git - libass/commitdiff
ass_utils: fix declarations
authorwm4 <wm4@nowhere>
Mon, 27 Jan 2014 18:58:43 +0000 (19:58 +0100)
committerwm4 <wm4@nowhere>
Mon, 27 Jan 2014 18:58:43 +0000 (19:58 +0100)
Now they're the same as in ass_utils.h.

libass/ass_utils.c

index 9d52eca070ac13f29703b2297fdfc49670b7462d..72993d76478241312403ebb0897be42609c32623 100644 (file)
 
 #include "x86/cpuid.h"
 
-int has_sse2()
+int has_sse2(void)
 {
     uint32_t eax = 1, ebx, ecx, edx;
     ass_get_cpuid(&eax, &ebx, &ecx, &edx);
     return (!!(edx & (1 << 26)));
 }
 
-int has_avx()
+int has_avx(void)
 {
     uint32_t eax = 1, ebx, ecx, edx;
     ass_get_cpuid(&eax, &ebx, &ecx, &edx);
@@ -54,7 +54,7 @@ int has_avx()
     return (!!(misc & (1 << 28)));
 }
 
-int has_avx2()
+int has_avx2(void)
 {
     uint32_t eax = 7, ebx, ecx, edx;
     ass_get_cpuid(&eax, &ebx, &ecx, &edx);