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