mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2025-11-23 06:48:31 +00:00
17 lines
439 B
C
17 lines
439 B
C
//--------------------------------------------------------------------------//
|
|
// This file is in the public domain, so clarified as of //
|
|
// 2009-05-17 by Arthur David Olson. //
|
|
//--------------------------------------------------------------------------//
|
|
|
|
#include "time_header.h"
|
|
|
|
void tzset(void)
|
|
{
|
|
if (lock() != 0)
|
|
return;
|
|
|
|
tzset_unlocked();
|
|
|
|
unlock();
|
|
}
|