Re: Mac OSX std.datetime / Posix daylight variable

2011-02-20 Thread Jacob Carlborg
On 2011-02-20 13:53, Michel Fortin wrote: On 2011-02-20 00:11:11 -0500, Jonathan M Davis said: Posix defines the tzset function along with a few helper items. From the Linux man page: extern int daylight; extern long timezone; extern char *tzname[2]; void tzset(void); It seems that while the

Re: Mac OSX std.datetime / Posix daylight variable

2011-02-20 Thread Jonathan M Davis
On Sunday 20 February 2011 04:53:03 Michel Fortin wrote: > On 2011-02-20 00:11:11 -0500, Jonathan M Davis said: > > Posix defines the tzset function along with a few helper items. From the > > Linux man page: > > > > extern int daylight; > > extern long timezone; > > extern char *tzname[2]; > > v

Re: Mac OSX std.datetime / Posix daylight variable

2011-02-20 Thread Michel Fortin
On 2011-02-20 00:11:11 -0500, Jonathan M Davis said: Posix defines the tzset function along with a few helper items. From the Linux man page: extern int daylight; extern long timezone; extern char *tzname[2]; void tzset(void); It seems that while these _are_ Posix, not all Posix systems decla

Mac OSX std.datetime / Posix daylight variable

2011-02-19 Thread Jonathan M Davis
Posix defines the tzset function along with a few helper items. From the Linux man page: extern int daylight; extern long timezone; extern char *tzname[2]; void tzset(void); It seems that while these _are_ Posix, not all Posix systems declare all of them (which baffles me, but that's the w