From: Jaroslav Kysela Date: Mon, 24 Apr 2017 18:42:46 +0000 (+0200) Subject: remove llabs() inline from compat.h X-Git-Tag: v4.2.2~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7b935a8b4058c3be303340baaf9417c572ff60c;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 */