RISCOS: Add log10f and strcoll to functions to link

This commit is contained in:
Cameron Cawley 2022-06-19 00:34:58 +01:00
parent 801b3c0c06
commit 05a5e44729

View file

@ -37,11 +37,13 @@
void pluginHack() {
volatile float f = 0.0f;
volatile double d = 0.0;
volatile int i = 0;
byte *b = new (std::nothrow) byte[100];
f = tanhf(f);
f = logf(f);
f = log10f(f);
f = lroundf(f);
f = expf(f);
f = frexpf(f, NULL);
@ -52,6 +54,8 @@ void pluginHack() {
d = nearbyint(d);
i = strcoll("dummyA", "dummyB");
rename("dummyA", "dummyB");
delete[] b;