diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-11-04 19:54:32 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-11-04 19:54:32 +0100 |
commit | 7fd9aa2797e6ed011a8187cfe3162fbaa4b19730 (patch) | |
tree | 52ea447fb662cf72abdd8f3ecaacec154b468846 /src | |
parent | begin makefile + fix warnings and errors (diff) | |
download | libkeccak-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.h | 4 |
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); |