]> pd.if.org Git - pdclib/blobdiff - functions/time/timespec.c
Artefacts.
[pdclib] / functions / time / timespec.c
diff --git a/functions/time/timespec.c b/functions/time/timespec.c
deleted file mode 100644 (file)
index 7ebe547..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/* timespec_get( struct timespec *, int )
-
-   This file is part of the Public Domain C Library (PDCLib).
-   Permission is granted to use, modify, and / or redistribute at will.
-*/
-
-#include <time.h>
-
-#ifndef REGTEST
-
-int timespec_get( struct timespec * ts, int base )
-{
-    return 0;
-}
-
-#endif
-
-#ifdef TEST
-
-#include "_PDCLIB_test.h"
-
-int main( void )
-{
-    TESTCASE( NO_TESTDRIVER );
-    return TEST_RESULTS;
-}
-
-#endif