15 lines
205 B
C
Executable file
15 lines
205 B
C
Executable file
/*
|
|
* 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 */
|
|
}
|