From b7b935a8b4058c3be303340baaf9417c572ff60c Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 24 Apr 2017 20:42:46 +0200 Subject: [PATCH] remove llabs() inline from compat.h --- src/compat.h | 6 ------ 1 file changed, 6 deletions(-) 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 */ -- 2.47.2