15 lines
324 B
C
15 lines
324 B
C
#pragma once
|
|
extern "C" {
|
|
/**
|
|
* Gets the square root of num four times and writes it to @res
|
|
*
|
|
* @param num: the number of which the square root shall be taken
|
|
* @param res: where the 4 results shall be written
|
|
*/
|
|
void _AVX(float num, void* res);
|
|
|
|
/**
|
|
* Just a wrapper around RDRAND
|
|
*/
|
|
uint32_t _RDRAND(void);
|
|
} |