aboutsummaryrefslogtreecommitdiffstats
path: root/src/pdclib/functions/_PDCLIB/_PDCLIB_seed.c
blob: ce7c31c539b6fd03d09f20cc1fdb2b2ad13bbd03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* _PDCLIB_seed

   This file is part of the Public Domain C Library (PDCLib).
   Permission is granted to use, modify, and / or redistribute at will.
*/

unsigned long int _PDCLIB_seed = 1;

#ifdef TEST

#include "_PDCLIB_test.h"

int main( void )
{
    /* no tests for raw data */
    return TEST_RESULTS;
}

#endif