|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/highlandlabs/cqi-bin/ALFA_DATA/alfasymlink/root/usr/include/sys/ |
Upload File : |
/*- * This file is in the public domain. */ #ifndef _SYS_PRNG_H_ #define _SYS_PRNG_H_ #define PCG_USE_INLINE_ASM 1 #include <contrib/pcg-c/include/pcg_variants.h> #ifdef _KERNEL __uint32_t prng32(void); __uint32_t prng32_bounded(__uint32_t bound); __uint64_t prng64(void); __uint64_t prng64_bounded(__uint64_t bound); #endif #endif