abs.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
---
abs.c (78B)
---
1 #include <stdlib.h>
2
3 #undef abs
4
5 int
6 abs(int n)
7 {
8 return (n < 0) ? -n : n;
9 }