vx32

Local 9vx git repository for patches.
git clone git://r-36.net/vx32
Log | Files | Refs

floatlib.c (184B)


      1 // Gcc generates these because we have no 387 ???
      2 // TODO: Real implementations
      3 
      4 long double __extenddfxf2(double a)
      5 {
      6 	return 0;
      7 }
      8 
      9 double __truncxfdf2(long double a)
     10 {
     11 	return 0;
     12 }
     13