From 93e46d21f99880a1d847369ea68edf3a3a44b989 Mon Sep 17 00:00:00 2001 From: Martin Baute Date: Sun, 3 Apr 2016 09:06:20 +0200 Subject: [PATCH] Artefacts. --- functions/time/clock.c | 28 ---------------------------- functions/time/timespec.c | 28 ---------------------------- 2 files changed, 56 deletions(-) delete mode 100644 functions/time/clock.c delete mode 100644 functions/time/timespec.c diff --git a/functions/time/clock.c b/functions/time/clock.c deleted file mode 100644 index 4be69e3..0000000 --- a/functions/time/clock.c +++ /dev/null @@ -1,28 +0,0 @@ -/* clock( void ) - - This file is part of the Public Domain C Library (PDCLib). - Permission is granted to use, modify, and / or redistribute at will. -*/ - -#include - -#ifndef REGTEST - -clock_t clock( void ) -{ - return -1; -} - -#endif - -#ifdef TEST - -#include "_PDCLIB_test.h" - -int main( void ) -{ - TESTCASE( NO_TESTDRIVER ); - return TEST_RESULTS; -} - -#endif diff --git a/functions/time/timespec.c b/functions/time/timespec.c deleted file mode 100644 index 7ebe547..0000000 --- a/functions/time/timespec.c +++ /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 - -#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 -- 2.40.0