]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/_PDCLIB_seed.c
14cd4f48de25e201960b4b2dce71823782ae8ddb
[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 #include <_PDCLIB_test.h>
11
12 int main( void )
13 {
14     /* no tests for raw data */
15     return TEST_RESULTS;
16 }
17
18 #endif