semtimedop: add time64 syscall support, decouple 32-bit time_t
[musl] / src / crypt / crypt_des.h
index 8ccbf8b..96748b5 100644 (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