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 7unsigned long int _PDCLIB_seed = 1; 8 9#ifdef TEST 10#include "_PDCLIB_test.h" 11 12int main( void ) 13{ 14 /* no tests for raw data */ 15 return TEST_RESULTS; 16} 17 18#endif 19 20