]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/_PDCLIB_seed.c
Rename all files to match their primary symbol (avoids file conflicts in library...
[pdclib] / functions / _PDCLIB / _PDCLIB_seed.c
diff --git a/functions/_PDCLIB/_PDCLIB_seed.c b/functions/_PDCLIB/_PDCLIB_seed.c
new file mode 100644 (file)
index 0000000..98ecf96
--- /dev/null
@@ -0,0 +1,20 @@
+/* $Id$ */
+
+/* _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