mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-09-01 11:16:02 +00:00
* doc/gnulib.texi (Function Substitutes): Add one section per header file. * doc/posix-functions/*.texi: Each of these files is now a subsection.
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
@node timezone
|
|
@subsection @code{timezone}
|
|
@findex timezone
|
|
|
|
POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9799919799/functions/timezone.html}
|
|
|
|
Gnulib module: ---
|
|
|
|
Portability problems fixed by Gnulib:
|
|
@itemize
|
|
@end itemize
|
|
|
|
Portability problems not fixed by Gnulib:
|
|
@itemize
|
|
@item
|
|
This variable's contents are unreliable if you use a geographical
|
|
@env{TZ} setting like @code{TZ="America/Los_Angeles"}.
|
|
@item
|
|
This variable is missing (and instead, a function named @code{timezone} exists)
|
|
on some platforms:
|
|
FreeBSD 14.0, OpenBSD 5.7.
|
|
@item
|
|
This variable is called @code{_timezone} on some platforms:
|
|
mingw with @code{-DNO_OLDNAMES}, MSVC.
|
|
@item
|
|
The address of this variable is not a compile-time constant on some platforms:
|
|
mingw, MSVC.
|
|
@item
|
|
Native Windows platforms (mingw, MSVC) support only a subset of time
|
|
zones supported by GNU or specified by POSIX@. @xref{tzset}.
|
|
@end itemize
|
|
|
|
This variable is vestigial: it is not needed and does not suffice in general.
|
|
It is planned to be removed from a future version of POSIX@.
|
|
A more portable way of getting the UTC offset is to use
|
|
@code{strftime} with the @code{%z} format. @xref{strftime}.
|