time.c revision 94e25967cda41b886e33ec254b917d21df21a187
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <isc/assertions.h>
#include <isc/assertions.h>
#include <isc/unexpect.h>
/*
* Set *timep to the current absolute time (secs + nsec since
* January 1, 1970).
*/
return (ISC_R_UNEXPECTED);
}
return (ISC_R_SUCCESS);
}
int
/*
* Compare the times referenced by 't1p' and 't2p'
*/
return (-1);
return (1);
return (-1);
return (1);
return (0);
}
void
{
/*
* Add 't1p' to 't2p', storing the result in 't3p'.
*/
}
}
void
/*
* Subtract 't2p' from 't1p', storing the result in 't1p'.
*/
else {
}
}