silence warnings

This commit is contained in:
Joey Castillo
2025-07-06 12:40:06 -04:00
parent 87448e6e44
commit 410d32f2d0
4 changed files with 8 additions and 5 deletions

View File

@@ -89,3 +89,8 @@ void watch_reset_to_bootloader(void);
* FIXME: find a better place for this, a couple of watch faces need it.
*/
void watch_disable_TRNG(void);
#ifndef arc4random_uniform
// not sure why this definition is missing but let's put it here for now
uint32_t arc4random_uniform(uint32_t upper_bound);
#endif