feat: déclaration de fonctions ayant rapport avec les mathématiques

This commit is contained in:
Nicolas Hordé 2007-04-02 13:58:46 +00:00
parent 3b1c4fc398
commit e85b7dad26
1 changed files with 3 additions and 0 deletions

3
include/math.h Normal file
View File

@ -0,0 +1,3 @@
#define sgn(x) ((x<0)?-1:((x>0)?1:0));
u32 abs(int x);