mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
14 lines
281 B
C
14 lines
281 B
C
/* x86.h -- check for x86 CPU features
|
|
* Copyright (C) 2013 Intel Corporation Jim Kukunas
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
|
|
#ifndef X86_H
|
|
#define X86_H
|
|
|
|
extern int x86_cpu_enable_simd;
|
|
|
|
void x86_check_features(void);
|
|
|
|
#endif /* X86_H */
|