time: It is not an error if the TOD is not set.

This commit is contained in:
Joel Sherrill
1996-08-12 19:19:03 +00:00
parent 9b77fee2bc
commit 40cfab477e
2 changed files with 8 additions and 4 deletions

View File

@@ -64,8 +64,10 @@ time_t time(
{
time_t seconds_since_epoch;
if ( !_TOD_Is_set() )
set_errno_and_return_minus_one( EINVAL );
/*
* No error is the time of day is not set. For RTEMS the system time
* starts out at the rtems epoch.
*/
/*
* Internally the RTEMS epoch is 1988. This must be taken into account.