Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/waterbox/libc/functions/_PDCLIB/_PDCLIB_seed.c
2 views
1
/* _PDCLIB_seed
2
3
This file is part of the Public Domain C Library (PDCLib).
4
Permission is granted to use, modify, and / or redistribute at will.
5
*/
6
7
unsigned long int _PDCLIB_seed = 1;
8
9
#ifdef TEST
10
#include "_PDCLIB_test.h"
11
12
int main( void )
13
{
14
/* no tests for raw data */
15
return TEST_RESULTS;
16
}
17
18
#endif
19
20