summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-02-17 06:38:01 +0000
committerEric Andersen <andersen@codepoet.org>2004-02-17 06:38:01 +0000
commita7268bc492a1c8e3009dbae24511c2bd4cb9c27a (patch)
tree028881b2265ab5b2be1e684ea14f63619ae7363b
parent5b61513518417b2d3a0d0bb246d3a8189e176587 (diff)
Do not duplicate stuff from ldso.h
-rw-r--r--ldso/ldso/arm/dl-syscalls.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/ldso/ldso/arm/dl-syscalls.h b/ldso/ldso/arm/dl-syscalls.h
index dbf1634e0..c020832bb 100644
--- a/ldso/ldso/arm/dl-syscalls.h
+++ b/ldso/ldso/arm/dl-syscalls.h
@@ -3,17 +3,5 @@
* before the errno symbol is dynamicly linked. */
#define __set_errno(X) {(void)(X);}
-
-/* Prepare for the case that `__builtin_expect' is not available. */
-#if __GNUC__ == 2 && __GNUC_MINOR__ < 96
-#define __builtin_expect(x, expected_value) (x)
-#endif
-#ifndef likely
-# define likely(x) __builtin_expect((!!(x)),1)
-#endif
-#ifndef unlikely
-# define unlikely(x) __builtin_expect((!!(x)),0)
-#endif
-
#include "sys/syscall.h"