export symbols in test_cases

This commit is contained in:
2017-12-27 13:46:19 +01:00
parent 143200e0e6
commit c7b6246025
8 changed files with 24 additions and 14 deletions

View File

@@ -6,10 +6,10 @@ extern "C" {
* @param num: the number of which the square root shall be taken
* @param res: where the 4 results shall be written
*/
void _declspec(dllexport) _AVX(float num, void* res);
void _AVX(float num, void* res);
/**
* Just a wrapper around RDRAND
*/
uint32_t _declspec(dllexport) _RDRAND(void);
uint32_t _RDRAND(void);
}