style: Reformatage de la fonction ABS

This commit is contained in:
Nicolas Hordé 2007-04-02 14:34:32 +00:00
parent 1027401800
commit ebc947f06d
1 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
#include "types.h"
u32 abs(int x)
{
if (x<0) x=-x;
return (u32)x;
}
#include "types.h"
u32 abs(int x)
{
if (x<0) x=-x;
return (u32)x;
}