X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2F_PDCLIB%2F_PDCLIB_seed.c;fp=functions%2F_PDCLIB%2F_PDCLIB_seed.c;h=98ecf96276099ac65d2ec2141f4df690c36b8952;hb=3082b97d8f2de1584430ad42671a0e056ed33be4;hp=0000000000000000000000000000000000000000;hpb=d7f27d5325d7c44d93be00662b13aa9ffdec76b1;p=pdclib diff --git a/functions/_PDCLIB/_PDCLIB_seed.c b/functions/_PDCLIB/_PDCLIB_seed.c new file mode 100644 index 0000000..98ecf96 --- /dev/null +++ b/functions/_PDCLIB/_PDCLIB_seed.c @@ -0,0 +1,20 @@ +/* $Id$ */ + +/* _PDCLIB_seed + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +unsigned long int _PDCLIB_seed = 1; + +#ifdef TEST +#include <_PDCLIB_test.h> + +int main( void ) +{ + /* no tests for raw data */ + return TEST_RESULTS; +} + +#endif