diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-08-07 17:14:49 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-08-07 17:14:49 -0300 |
commit | c318905e143bf87636e358b3ce0c2da1d014ada9 (patch) | |
tree | 89436a7a6c7255dcdac8f6255d34f474c820a1b4 | |
parent | 3d3ab573a5f3071992cbc4f57d50d1d29d55bde2 (diff) | |
download | glibc-c318905e143bf87636e358b3ce0c2da1d014ada9.tar glibc-c318905e143bf87636e358b3ce0c2da1d014ada9.tar.gz glibc-c318905e143bf87636e358b3ce0c2da1d014ada9.tar.bz2 glibc-c318905e143bf87636e358b3ce0c2da1d014ada9.zip |
manual: Put the istrerrorname_np and strerrordesc_np return type in braces
Otherwise it is not rendered or indexed correctly.
-rw-r--r-- | manual/errno.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/errno.texi b/manual/errno.texi index 7ac1554bb1..9879ab43e6 100644 --- a/manual/errno.texi +++ b/manual/errno.texi @@ -1207,7 +1207,7 @@ to @code{errno}. The function @code{perror} is declared in @file{stdio.h}. @end deftypefun -@deftypefun const char * strerrorname_np (int @var{errnum}) +@deftypefun {const char *} strerrorname_np (int @var{errnum}) @standards{GNU, string.h} @safety{@mtsafe{}@assafe{}@acsafe{}} This function returns the name describing the error @var{errnum} or @@ -1218,7 +1218,7 @@ for @code{EINVAL}). This function is a GNU extension, declared in the header file @file{string.h}. @end deftypefun -@deftypefun const char * strerrordesc_np (int @var{errnum}) +@deftypefun {const char *} strerrordesc_np (int @var{errnum}) @standards{GNU, string.h} @safety{@mtsafe{}@assafe{}@acsafe{}} This function returns the message describing the error @var{errnum} or |