git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9801 a95241bf-73f2-0310-859d-f6bbb57e9c96
19 lines
262 B
C
19 lines
262 B
C
/*
|
|
** Copyright 2004, Jérôme Duval. All rights reserved.
|
|
** Distributed under the terms of the Haiku License.
|
|
*/
|
|
|
|
#include <time.h>
|
|
#include <OS.h>
|
|
|
|
|
|
int
|
|
stime(const time_t *tp)
|
|
{
|
|
if (tp == NULL)
|
|
return B_ERROR;
|
|
set_real_time_clock(*tp);
|
|
return B_OK;
|
|
}
|
|
|