16 lines
205 B
C
16 lines
205 B
C
|
/*
|
||
|
* tzset - set timezone information
|
||
|
*/
|
||
|
/* $Header$ */
|
||
|
|
||
|
/* This function is present for System V && POSIX */
|
||
|
|
||
|
#include <time.h>
|
||
|
#include "loc_time.h"
|
||
|
|
||
|
void
|
||
|
tzset(void)
|
||
|
{
|
||
|
_tzset(); /* does the job */
|
||
|
}
|