gbdk-releases/gbdk-lib/libc/abs.c

11 lines
115 B
C
Raw Permalink Normal View History

2015-01-10 16:25:07 +01:00
#include <stdlib.h>
2015-01-10 16:25:08 +01:00
#include <types.h>
2015-01-10 16:25:07 +01:00
2015-01-10 16:25:09 +01:00
int abs(int num)
2015-01-10 16:25:07 +01:00
{
if(num < 0)
return -num;
else
return num;
}