summaryrefslogtreecommitdiffstats
path: root/tools/lsd/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lsd/common.h')
-rw-r--r--tools/lsd/common.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/lsd/common.h b/tools/lsd/common.h
deleted file mode 100644
index 6447b10..0000000
--- a/tools/lsd/common.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef COMMON_H
-#define COMMON_H
-
-#include <libelf.h>
-#include <elf.h>
-
-#define unlikely(expr) __builtin_expect (expr, 0)
-#define likely(expr) __builtin_expect (expr, 1)
-
-#define MIN(a,b) ((a)<(b)?(a):(b)) /* no side effects in arguments allowed! */
-
-#endif/*COMMON_H*/