mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
17 lines
333 B
C
17 lines
333 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
|
|
|
|
#include "zlib.h"
|
|
|
|
extern int x86_cpu_enable_ssse3;
|
|
extern int x86_cpu_enable_simd;
|
|
|
|
void x86_check_features(void);
|
|
|
|
#endif /* X86_H */
|