summaryrefslogtreecommitdiff
path: root/soh/src/boot/missing_gcc_functions.c
blob: d1d71201f7905f56bf99da267815207b1c73ca94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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;
}