1989-06-12 15:22:14 +00:00
|
|
|
/*
|
1989-12-18 15:33:48 +00:00
|
|
|
* tzset - set timezone information
|
1989-06-12 15:22:14 +00:00
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1989-06-12 15:22:14 +00:00
|
|
|
|
1989-12-18 15:33:48 +00:00
|
|
|
/* This function is present for System V && POSIX */
|
1989-06-12 15:22:14 +00:00
|
|
|
|
|
|
|
#include <time.h>
|
1991-04-22 13:21:11 +00:00
|
|
|
#include "loc_time.h"
|
1989-06-12 15:22:14 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
tzset(void)
|
|
|
|
{
|
1989-12-18 15:33:48 +00:00
|
|
|
_tzset(); /* does the job */
|
1989-06-12 15:22:14 +00:00
|
|
|
}
|