source:
trunk/minix/lib/ansi/tzset.c@
11
Last change on this file since 11 was 9, checked in by , 14 years ago | |
---|---|
File size: 280 bytes |
Rev | Line | |
---|---|---|
[9] | 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 | ||
11 | void | |
12 | tzset(void) | |
13 | { | |
14 | _tzset(); /* does the job */ | |
15 | } |
Note:
See TracBrowser
for help on using the repository browser.