mirror of
https://gitlab.os-k.eu/os-k-team/os-k.git
synced 2023-08-25 14:03:10 +02:00
34 lines
929 B
C
34 lines
929 B
C
//----------------------------------------------------------------------------//
|
|
// GNU GPL OS/K //
|
|
// //
|
|
// Authors: spectral` //
|
|
// NeoX //
|
|
// //
|
|
// Desc: Arithmetical functions //
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// do not mask anything
|
|
#define _KALEID_UNMASKED
|
|
#include <kalbase.h>
|
|
|
|
int _osk_abs(int x)
|
|
{
|
|
return abs(x);
|
|
}
|
|
|
|
long _osk_labs(long x)
|
|
{
|
|
return labs(x);
|
|
}
|
|
|
|
div_t _osk_div(int x, int y)
|
|
{
|
|
return div(x, y);
|
|
}
|
|
|
|
ldiv_t _osk_ldiv(long x, long y)
|
|
{
|
|
return ldiv(x, y);
|
|
}
|
|
|