]> pd.if.org Git - pdclib/blobdiff - opt/notime/time.c
Moved notime and mincoll from opt/ to functions/.
[pdclib] / opt / notime / time.c
diff --git a/opt/notime/time.c b/opt/notime/time.c
deleted file mode 100644 (file)
index 6bbf4c7..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <time.h>
-
-#ifndef REGTEST
-time_t time(time_t* t)
-{
-       if(t) *t = -1;
-       return -1;
-}
-#endif
-
-#ifdef TEST
-#include "_PDCLIB_test.h"
-
-int main( void )
-{
-    return TEST_RESULTS;
-}
-
-#endif