ack/plat/cpm/libsys/time.c
2007-04-27 22:42:41 +00:00

17 lines
176 B
C

/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <time.h>
time_t time(time_t* t)
{
if (t)
*t = 0;
return 0;
}