mescc: Mes C Library: div: Avoid __raise for TinyCC.
* lib/mes/div.c (__raise)[__TINYC__]: New macro.
This commit is contained in:
parent
ede49daabb
commit
ddd8349827
|
@ -33,6 +33,10 @@ struct ldiv_t
|
|||
|
||||
int __raise (int);
|
||||
|
||||
#if __TINYC__
|
||||
#define __raise(x) -1
|
||||
#endif
|
||||
|
||||
void
|
||||
__mesabi_div0 (void)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue