]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/seed.c
Initial checkin.
[pdclib] / functions / _PDCLIB / seed.c
diff --git a/functions/_PDCLIB/seed.c b/functions/_PDCLIB/seed.c
new file mode 100644 (file)
index 0000000..df0c55d
--- /dev/null
@@ -0,0 +1,23 @@
+/* $Id$ */
+
+/* Release $Name$ */
+
+/* _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()
+{
+    BEGIN_TESTS;
+    /* no tests for raw data */
+    return TEST_RESULTS;
+}
+
+#endif