diff options
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -39,11 +39,14 @@ #if defined(__GNUC__) -__attribute__((__const__)) +__attribute__((__const__, __visibility__("hidden"))) #endif uint8_t libhashsum_reverse_byte__(uint8_t); #ifdef LIBHASHSUM_INCLUDE_LIBKECCAK_STATE +#if defined(__GNUC__) +__attribute__((__visibility__("hidden"))) +#endif int libhashsum_init_keccak__(struct libhashsum_hasher *this, size_t hashbits, void *spec, size_t squeezes, const char *suffix); #endif |