]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/_PDCLIB_seed.c
Moving branches closer together.
[pdclib] / functions / _PDCLIB / _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