aboutsummaryrefslogtreecommitdiffstats
path: root/libkeccak/internal.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2019-02-10 23:38:57 +0100
committerMattias Andrée <maandree@kth.se>2019-02-10 23:38:57 +0100
commit6e6cad5f0d13cd7a6ac430d5ddab856d034ed35a (patch)
tree719891909b27499d439cb48bd56ec84fadbf942c /libkeccak/internal.h
parentUpdate year (diff)
downloadlibkeccak-6e6cad5f0d13cd7a6ac430d5ddab856d034ed35a.tar.gz
libkeccak-6e6cad5f0d13cd7a6ac430d5ddab856d034ed35a.tar.bz2
libkeccak-6e6cad5f0d13cd7a6ac430d5ddab856d034ed35a.tar.xz
Remove old file
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--libkeccak/internal.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/libkeccak/internal.h b/libkeccak/internal.h
deleted file mode 100644
index 3e45c15..0000000
--- a/libkeccak/internal.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#ifndef LIBKECCAK_INTERNAL_H
-#define LIBKECCAK_INTERNAL_H 1
-
-
-/* Use built in functions and branching optimisation if available */
-#ifndef __GNUC__
-# define __builtin_expect(expression, expect) expression
-# define __builtin_memset(dest, c, n) memset(dest, c, n)
-# define __builtin_memcpy(dest, src, n) memcpy(dest, src, n)
-# define __builtin_memmove(dest, src, n) memmove(dest, src, n)
-#endif
-
-
-#endif