remove LFS64 programming interfaces (macro-only) from _GNU_SOURCE
[musl] / src / stdlib / labs.c
index 675b95b..83ddb14 100644 (file)
@@ -1,3 +1,5 @@
+#include <stdlib.h>
+
 long labs(long a)
 {
        return a>0 ? a : -a;