llabs.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
llabs.c (94B)
---
1 #include <stdlib.h>
2
3 #undef llabs
4
5 long long
6 llabs(long long n)
7 {
8 return (n < 0) ? -n : n;
9 }