]> pd.if.org Git - pdclib.old/blob - functions/_PDCLIB/_PDCLIB_seed.c
flushbuffer: make EOL conversion code more robust against I/O errors
[pdclib.old] / 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