12 lines
168 B
C
12 lines
168 B
C
|
|
#ifndef DUMP1090_CPU_H
|
||
|
|
#define DUMP1090_CPU_H
|
||
|
|
|
||
|
|
// x86
|
||
|
|
int cpu_supports_avx(void);
|
||
|
|
int cpu_supports_avx2(void);
|
||
|
|
|
||
|
|
// ARM
|
||
|
|
int cpu_supports_armv7_neon_vfpv4(void);
|
||
|
|
|
||
|
|
#endif
|