/* This file was adapted from the Public Domain C Library (PDCLib). * * Permission is granted to use, modify, and/or redistribute at will. */ #include time_t time(time_t* t) { if(t) *t = -1; return -1; }