summaryrefslogtreecommitdiff
path: root/src/crypt
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2018-09-11 12:32:46 -0400
committerRich Felker <dalias@aerifal.cx>2018-09-12 14:34:34 -0400
commit7e399fabd3db2c528b5982803eeba2841f547695 (patch)
tree7dd5b5bf30e99dd0f622203017bc9364e8a74aab /src/crypt
parentb6e59cd925cbe6c0f23cf46828d47e6e7edd17c9 (diff)
downloadmusl-7e399fabd3db2c528b5982803eeba2841f547695.tar.gz
apply hidden visibility to various remaining internal interfaces
Diffstat (limited to 'src/crypt')
-rw-r--r--src/crypt/crypt_des.h6
1 files changed, 3 insertions, 3 deletions
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