export symbols in test_cases
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user