#ifndef RANDOMBYTES_UNIFIED_H
#defineRANDOMBYTES_UNIFIED_H#include<stddef.h>#include<stdint.h>// Unified randombytes declaration that works for both Dilithium and SPHINCS+
// Using size_t which is 32-bit in WASM
voidrandombytes(uint8_t*out,size_toutlen);#endif