9os

Experimental kernel using plan9 ideas for embedded device
git clone git://git.simple-cc.org/9os
Log | Files | Refs | README | LICENSE

llabs.c (93B)


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