node/deps/zlib/x86.h
Brian White bf7097c77d
deps: switch to chromium's zlib implementation
This implementation provides optimizations not included upstream.

PR-URL: https://github.com/nodejs/node/pull/31201
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
2020-02-17 11:36:24 -08:00

16 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 */