]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/seed.c
Initial checkin.
[pdclib] / functions / _PDCLIB / seed.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* _PDCLIB_seed
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 unsigned long int _PDCLIB_seed = 1;
12
13 #ifdef TEST
14 #include <_PDCLIB_test.h>
15
16 int main()
17 {
18     BEGIN_TESTS;
19     /* no tests for raw data */
20     return TEST_RESULTS;
21 }
22
23 #endif