From: Jaroslav Kysela Date: Mon, 24 Apr 2017 18:42:46 +0000 (+0200) Subject: remove llabs() inline from compat.h X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e0d87618a22139dbd6a1383453f9a4980763cebb;p=thirdparty%2Ftvheadend.git remove llabs() inline from compat.h --- diff --git a/src/compat.h b/src/compat.h index beccc2cde..6a04f8fa8 100644 --- a/src/compat.h +++ b/src/compat.h @@ -47,12 +47,6 @@ #ifndef ENABLE_INOTIFY_INIT1 #define inotify_init1(IN_CLOEXEC) inotify_init() #endif -#ifndef ENABLE_LLABS -static inline long long int llabs(long long int a) -{ - if (a < 0) return -a; else return a; -} -#endif #endif /* TVH_COMPAT_H */