meta: rename to fx

This commit is contained in:
2026-03-16 10:35:43 +00:00
parent 84df46489a
commit e9d0e323f0
233 changed files with 12875 additions and 12869 deletions

View File

@@ -2,7 +2,7 @@
#include <stdint.h>
#include <unistd.h>
uint64_t z__b_platform_random_seed()
uint64_t z__fx_platform_random_seed()
{
int fd = open("/dev/urandom", O_RDONLY);
if (fd == -1) {
@@ -18,7 +18,7 @@ uint64_t z__b_platform_random_seed()
return v;
}
uint64_t z__b_platform_random_seed_secure()
uint64_t z__fx_platform_random_seed_secure()
{
int fd = open("/dev/random", O_RDONLY);
if (fd == -1) {