apply hidden visibility to various remaining internal interfaces

This commit is contained in:
Rich Felker
2018-09-12 14:34:34 -04:00
parent b6e59cd925
commit 7e399fabd3
16 changed files with 51 additions and 45 deletions
+3 -3
View File
@@ -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