blob: ebcf10ab09d21d85d9d6b2b5d5bd2e5b0c9c4960 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* 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_simd;
void x86_check_features(void);
#endif /* X86_H */
|