]> pd.if.org Git - pdclib.old/blob - functions/_PDCLIB/seed.c
Porting current working set from CVS.
[pdclib.old] / 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( void )
17 {
18     /* no tests for raw data */
19     return TEST_RESULTS;
20 }
21
22 #endif