Skip to content

Commit

Permalink
Merge 544bc43 into 887621d
Browse files Browse the repository at this point in the history
  • Loading branch information
stefaneicher committed Dec 16, 2020
2 parents 887621d + 544bc43 commit b73249a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Platforms/armcc/UtestPlatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ void (*PlatformSpecificFree)(void* memory) = free;
void* (*PlatformSpecificMemCpy)(void*, const void*, size_t) = memcpy;
void* (*PlatformSpecificMemset)(void*, int, size_t) = memset;

void (*PlatformSpecificSrand)(unsigned int) = srand;
int (*PlatformSpecificRand)(void) = rand;

static int IsNanImplementation(double d)
{
return isnan(d);
Expand Down

0 comments on commit b73249a

Please sign in to comment.