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

@@ -3,7 +3,7 @@ extern "C" {
/**
* A small function, that always returns 0
*/
uint64_t _declspec(dllexport) _small(void);
uint64_t _small(void);
/**
* This function checks if the parameter is even or odd, and then
@@ -14,7 +14,7 @@ extern "C" {
*
* @param Number to be checked
*/
uint64_t _declspec(dllexport) _branch(uint64_t);
uint64_t _branch(uint64_t);
/**
* Replicates the MSVCRT rand().
@@ -27,5 +27,5 @@ extern "C" {
* return( ((seed = seed * 214013L
* + 2531011L) >> 16) & 0x7fff );
*/
uint64_t _declspec(dllexport) _rip_relative(void);
uint64_t _rip_relative(void);
};