tinycc: Add stubs: __floatundixf __fixunsxfdi.
* lib/libc+tcc-gcc.c (__floatundixf, __fixunsxfdi): New stub.
This commit is contained in:
parent
f8f0aacb61
commit
b9b6e17141
|
@ -115,4 +115,18 @@ __ashrdi3 (long long a, int b)
|
|||
{
|
||||
return a >> b;
|
||||
}
|
||||
|
||||
long double
|
||||
__floatundixf (unsigned long long a)
|
||||
{
|
||||
eputs ("__floatundix stub\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned long long
|
||||
__fixunsxfdi (double a1)
|
||||
{
|
||||
eputs ("__fixunsxfdi stub\n");
|
||||
return 0;
|
||||
}
|
||||
#endif // !POSIX
|
||||
|
|
Loading…
Reference in a new issue