Hash :
0ea87e9a
Author :
Date :
2020-06-26T13:38:22
doc: Mention declaration fixes implemented by some modules. * doc/posix-functions/chdir.texi: Mention the module 'chdir'. * doc/posix-functions/close.texi: Mention that Gnulib makes the function declaration appear in <unistd.h>. * doc/posix-functions/dup.texi: Likewise. * doc/posix-functions/dup2.texi: Likewise. * doc/posix-functions/gethostname.texi: Likewise. * doc/posix-functions/isatty.texi: Likewise. * doc/posix-functions/lseek.texi: Likewise. * doc/posix-functions/unlink.texi: Likewise. * doc/posix-functions/read.texi: Mention the module 'read'. * doc/posix-functions/write.texi: Mention the effects of the module 'write'.
@node gethostname
@section @code{gethostname}
@findex gethostname
POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/gethostname.html}
Gnulib module: gethostname
Portability problems fixed by Gnulib:
@itemize
@item
This function is declared in a different header file (namely,
@code{<winsock2.h>}) on some platforms:
MSVC 14.
@item
On mingw and MSVC 14, this function has a prototype that differs from that
specified by POSIX, and it is defined only in the ws2_32 library.
@end itemize
Portability problems not fixed by Gnulib:
@itemize
@item
This function's second argument type is @code{int} instead of @code{size_t}
on some platforms:
Solaris 10.
@item
If the given buffer is too small for the host name, some implementations
fail with @code{EINVAL}, instead of returning a truncated host name.
@end itemize