lib files are building

This commit is contained in:
d1str4ught
2025-08-18 02:05:07 +02:00
parent 4e679320a3
commit 0ec3511104
93 changed files with 418 additions and 759 deletions

View File

@@ -9,7 +9,7 @@ using namespace std;
double _random()
{
#ifndef __WIN32__
#ifndef OS_WINDOWS
return random() / (2147483648.0);
#else
return rand() / (2147483648.0);

View File

@@ -1,4 +1,4 @@
#ifdef __WIN32__
#ifdef OS_WINDOWS
#include <windows.h>
#endif
@@ -14,7 +14,7 @@ int main(int argc, char ** argv)
{
printf( "12345\n" );
#ifndef __WIN32__
#ifndef OS_WINDOWS
srandom(time(0) + getpid());
#else
srand(time(0) + GetCurrentProcessId());