Distribution_Service/CC_SDK/Environment/jrtplib/tools/randstest.cpp
2026-03-24 14:43:26 +08:00

10 lines
135 B
C++

#define _CRT_RAND_S
#include <stdlib.h>
int main(void)
{
unsigned int number = 0;
errno_t err = rand_s(&number);
return 0;
}