summaryrefslogtreecommitdiff
path: root/sshbuf.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2014-09-03 05:33:25 +1000
committerDamien Miller <djm@mindrot.org>2014-09-03 05:33:25 +1000
commit23f269562b7537b2f6f5014e50a25e5dcc55a837 (patch)
tree86cae8862abbdb5c726a557aeacabd9f0eca3592 /sshbuf.c
parent41c8de2c0031cf59e7cf0c06b5bcfbf4852c1fda (diff)
downloadopenssh-git-23f269562b7537b2f6f5014e50a25e5dcc55a837.tar.gz
- (djm) [defines.h sshbuf.c] Move __predict_true|false to defines.h and
conditionalise to avoid duplicate definition.
Diffstat (limited to 'sshbuf.c')
-rw-r--r--sshbuf.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/sshbuf.c b/sshbuf.c
index 5df7c9f4..78f5340a 100644
--- a/sshbuf.c
+++ b/sshbuf.c
@@ -28,16 +28,6 @@
#include "ssherr.h"
#include "sshbuf.h"
-/* XXX move to defines.h? */
-#if defined(__GNUC__) && \
- ((__GNUC__ > (2)) || (__GNUC__ == (2) && __GNUC_MINOR__ >= (96)))
-#define __predict_true(exp) __builtin_expect(((exp) != 0), 1)
-#define __predict_false(exp) __builtin_expect(((exp) != 0), 0)
-#else
-#define __predict_true(exp) ((exp) != 0)
-#define __predict_false(exp) ((exp) != 0)
-#endif
-
static inline int
sshbuf_check_sanity(const struct sshbuf *buf)
{