time.c revision 9fbefe0ace2ae7dba287f914b278153004bef428
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <windows.h>
#include <isc/assertions.h>
#include <isc/unexpect.h>
isc_time_get(isc_time_t t) {
/*
* Set *timep to the current absolute time (secs + nsec since
* January 1, 1970).
*/
/* XXX No nanoseconds! */
t->nanoseconds = 0;
return (ISC_R_SUCCESS);
}
int
/*
* Compare the times referenced by 't1' and 't2'
*/
return (-1);
return (1);
return (-1);
return (1);
return (0);
}
void
{
/*
* Add 't1' to 't2', storing the result in 't3'.
*/
}
}
void
/*
* Subtract 't2' from 't1', storing the result in 't1'.
*/
else {
}
}