048e4af4beeda52033b0ed5b1bbf72f1ff12b92732b2e97b5e455c699ae51ba0

Download raw

Created: 2023-12-19 03:40:10.302489 UTC

Size: 865

Preview (limited to 512 bytes)

"#include <stdint.h>\n#include <stdio.h>\n#include <sys/time.h>\n#include <sys/types.h>\n#include <time.h>\n#include <unistd.h>\n\nuint64_t splitmix_init() {\n\n /* if there is /dev/urandom, read from it */\n FILE *urandom = fopen(\"/dev/urandom\", \"r\");\n if (urandom) {\n uint64_t result = 0;\n size_t r = fread(&result, sizeof(uint64_t), 1, urandom);\n fclose(urandom);\n\n if (r == 1) {\n return result;\n } else {\n return 0xfeed1000;\n }\n\n } else {\n "


Casa is a service provided by the Haskell Foundation │ Originally developed by FP Complete