summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/time.c')
-rw-r--r--cpukit/posix/src/time.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpukit/posix/src/time.c b/cpukit/posix/src/time.c
index 40c5332759..cc501f464b 100644
--- a/cpukit/posix/src/time.c
+++ b/cpukit/posix/src/time.c
@@ -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.