diff options
Diffstat (limited to 'src/stdlib/abs.c')
-rw-r--r-- | src/stdlib/abs.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdlib/abs.c b/src/stdlib/abs.c index e721fdc2..36fd6d05 100644 --- a/src/stdlib/abs.c +++ b/src/stdlib/abs.c @@ -4,3 +4,11 @@ int abs(int a) { return a>0 ? a : -a; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |