Subversion Repositories planix.SVN

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include <stdlib.h>

int
abs(int a)
{
        if(a < 0)
                return -a;
        return a;
}

long
labs(long a)
{
        if(a < 0)
                return -a;
        return a;
}