aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-11-04 19:54:32 +0100
committerMattias Andrée <maandree@operamail.com>2014-11-04 19:54:32 +0100
commit7fd9aa2797e6ed011a8187cfe3162fbaa4b19730 (patch)
tree52ea447fb662cf72abdd8f3ecaacec154b468846 /src
parentbegin makefile + fix warnings and errors (diff)
downloadlibkeccak-7fd9aa2797e6ed011a8187cfe3162fbaa4b19730.tar.gz
libkeccak-7fd9aa2797e6ed011a8187cfe3162fbaa4b19730.tar.bz2
libkeccak-7fd9aa2797e6ed011a8187cfe3162fbaa4b19730.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r--src/libkeccak/digest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libkeccak/digest.h b/src/libkeccak/digest.h
index 0283220..286dbb1 100644
--- a/src/libkeccak/digest.h
+++ b/src/libkeccak/digest.h
@@ -57,7 +57,7 @@ int libkeccak_digest(libkeccak_state_t* restrict state, char* restrict msg, size
* @param state The hashing state
* @param times The number of rounds
*/
-inline __attribute__((nonnull, nothrow, artificial, gnu_inline))
+__attribute__((nonnull, nothrow))
void libkeccak_simple_squeeze(libkeccak_state_t* restrict state, long times);
@@ -67,7 +67,7 @@ void libkeccak_simple_squeeze(libkeccak_state_t* restrict state, long times);
* @param state The hashing state
* @param times The number of digests
*/
-inline __attribute__((nonnull, nothrow, artificial, gnu_inline))
+__attribute__((nonnull, nothrow))
void libkeccak_fast_squeeze(libkeccak_state_t* restrict state, long times);