17 lines
182 B
C
17 lines
182 B
C
/*
|
|
* tzset - system V compatibility
|
|
*/
|
|
/* $Header$ */
|
|
|
|
#ifdef __USG
|
|
|
|
#include <time.h>
|
|
#include "loc_incl.h"
|
|
|
|
void
|
|
tzset(void)
|
|
{
|
|
_tzone(); /* does the job */
|
|
}
|
|
#endif /* __USG */
|