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