ulib Implement rand()

This commit is contained in:
2025-10-11 21:54:23 +02:00
parent ee93463c64
commit fc97d56eb5
2 changed files with 5 additions and 0 deletions

View File

@ -13,5 +13,6 @@ int32_t mman_map(uint8_t *addr, size_t size, uint64_t prot, uint64_t flags, uint
int32_t mman_unmap(uint8_t *addr);
int32_t schedrelease(void);
int32_t devctl(Dev_t *devh, uint64_t cmd, uint8_t *buffer, size_t len, uint64_t extra);
int32_t rand(void);
#endif // ULIB_SYSTEM_SYSTEM_H_