source: trunk/minix/lib/ansi/tzset.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 280 bytes
Line 
1/*
2 * tzset - set timezone information
3 */
4/* $Header: /cvsup/minix/src/lib/ansi/tzset.c,v 1.1.1.1 2005/04/21 14:56:06 beng Exp $ */
5
6/* This function is present for System V && POSIX */
7
8#include <time.h>
9#include "loc_time.h"
10
11void
12tzset(void)
13{
14 _tzset(); /* does the job */
15}
Note: See TracBrowser for help on using the repository browser.