X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=opt%2Fnotime%2Ftime.c;h=8826ee9c3158b466d1919dc293ad74b360c7c1ae;hb=48b352165d2cb89126ddde1323a138820687970a;hp=8f348196c4f9bbf898efa61ac28f225a4d83d535;hpb=7015f5842d05bd5da32523048e4260e60e9e310c;p=pdclib diff --git a/opt/notime/time.c b/opt/notime/time.c index 8f34819..8826ee9 100644 --- a/opt/notime/time.c +++ b/opt/notime/time.c @@ -4,4 +4,14 @@ time_t time(time_t* t) { if(t) *t = -1; return -1; -} \ No newline at end of file +} + +#ifdef TEST +#include <_PDCLIB_test.h> + +int main( void ) +{ + return TEST_RESULTS; +} + +#endif \ No newline at end of file