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