File:  [DVB] / dietlibc / lib / llabs.c
Revision 1.5: download - view: text, annotated - select for diffs
Thu Sep 23 02:11:00 2010 UTC (13 years, 8 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
make gnu grep compile

#include <endian.h>
#include <stdlib.h>
#include <inttypes.h>

#if __WORDSIZE != 64
long long int llabs(long long int i) { if (i<0) i=-i; return i; }
intmax_t imaxabs(intmax_t i) __attribute__((alias("llabs")));
#endif

LinuxTV legacy CVS <linuxtv.org/cvs>