mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-11 03:55:07 -05:00
14 lines
176 B
C
14 lines
176 B
C
|
#include "global.h"
|
||
|
|
||
|
// Define functions needed for the GCC build here.
|
||
|
|
||
|
|
||
|
|
||
|
f32 __floatundisf(u32 c) {
|
||
|
return (f32)c;
|
||
|
}
|
||
|
|
||
|
f64 __floatundidf(u32 c) {
|
||
|
return (f64)c;
|
||
|
}
|