source: trunk/sys/dietlibc/llabs.c @ 299

Last change on this file since 299 was 1, checked in by alain, 7 years ago

First import

File size: 135 bytes
Line 
1#include <endian.h>
2#include <stdlib.h>
3
4#if __WORDSIZE != 64
5long long int llabs(long long int i) { if (i<0) i=-i; return i; }
6#endif
Note: See TracBrowser for help on using the repository browser.