From 7e399fabd3db2c528b5982803eeba2841f547695 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 11 Sep 2018 12:32:46 -0400 Subject: apply hidden visibility to various remaining internal interfaces --- src/crypt/crypt_des.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/crypt/crypt_des.h') diff --git a/src/crypt/crypt_des.h b/src/crypt/crypt_des.h index 8ccbf8be..96748b56 100644 --- a/src/crypt/crypt_des.h +++ b/src/crypt/crypt_des.h @@ -7,8 +7,8 @@ struct expanded_key { uint32_t l[16], r[16]; }; -void __des_setkey(const unsigned char *, struct expanded_key *); -void __do_des(uint32_t, uint32_t, uint32_t *, uint32_t *, - uint32_t, uint32_t, const struct expanded_key *); +hidden void __des_setkey(const unsigned char *, struct expanded_key *); +hidden void __do_des(uint32_t, uint32_t, uint32_t *, uint32_t *, + uint32_t, uint32_t, const struct expanded_key *); #endif -- cgit v1.2.1