The following is my understanding and may be wrong ...
, OS X , Linux C Olson, ( , ).
, tzset. , , , TZ, tzset. :
int main(int argc, char *argv[]) {
time_t t = time(NULL);
printf("%s\n", ctime(&t));
setenv("TZ", "America/Chicago", 1);
printf("%s\n", ctime(&t));
return 0;
}
tzset timezone, GMT .
, ( , , timezone) C, , Linux, , .. , , , , Olson ICU TimeZone class ( C).