X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2F_PDCLIB%2Fseed.c;fp=functions%2F_PDCLIB%2Fseed.c;h=df0c55dc61025d78b1168d4f1cb290f34f3e1300;hb=018bb4d66e9e10c0dc17e6f5f4f91b875dc2c151;hp=0000000000000000000000000000000000000000;hpb=305f44c1d35c061567b94f0d214e1a54e67b96ce;p=pdclib.old diff --git a/functions/_PDCLIB/seed.c b/functions/_PDCLIB/seed.c new file mode 100644 index 0000000..df0c55d --- /dev/null +++ b/functions/_PDCLIB/seed.c @@ -0,0 +1,23 @@ +/* $Id$ */ + +/* Release $Name$ */ + +/* _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() +{ + BEGIN_TESTS; + /* no tests for raw data */ + return TEST_RESULTS; +} + +#endif