1 2 3 4 5 6 7 8 9 10
/* Public domain. */ extern double __floatsidf (long); double __floathidf (int); double __floathidf (int u) { return __floatsidf ((long)u); }