PatchworkOS
Loading...
Searching...
No Matches
abs.c
Go to the documentation of this file.
1#include <stdlib.h>
2
3int abs(int j)
4{
5 return (j >= 0) ? j : -j;
6}
int abs(int j)
Definition abs.c:3