Subversion Repositories Kolibri OS

Rev

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

  1. #include <stdlib.h>
  2.  
  3. long long llabs(long long a)
  4. {
  5.         return a>0 ? a : -a;
  6. }