aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/llabs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/llabs.c')
-rw-r--r--src/stdlib/llabs.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdlib/llabs.c b/src/stdlib/llabs.c
index 9dfaf5cf..7eca2ccb 100644
--- a/src/stdlib/llabs.c
+++ b/src/stdlib/llabs.c
@@ -4,3 +4,11 @@ long long llabs(long long a)
{
return a>0 ? a : -a;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif