mirror of git://sourceware.org/git/glibc.git
manual: Fix sigdescr_np and sigabbrev_np return type (BZ #26343)
This commit is contained in:
parent
5ff35e9544
commit
bad4a908ff
|
@ -880,7 +880,7 @@ to @var{signum}.
|
||||||
This function is a BSD feature, declared in the header file @file{signal.h}.
|
This function is a BSD feature, declared in the header file @file{signal.h}.
|
||||||
@end deftypefun
|
@end deftypefun
|
||||||
|
|
||||||
@deftypefun void sigdescr_np (int @var{signum})
|
@deftypefun {const char *} sigdescr_np (int @var{signum})
|
||||||
@standards{GNU, string.h}
|
@standards{GNU, string.h}
|
||||||
@safety{@mtsafe{}@assafe{}@acsafe{}}
|
@safety{@mtsafe{}@assafe{}@acsafe{}}
|
||||||
This function returns the message describing the signal @var{signum} or
|
This function returns the message describing the signal @var{signum} or
|
||||||
|
@ -893,7 +893,7 @@ of the program.
|
||||||
This function is a GNU extension, declared in the header file @file{string.h}.
|
This function is a GNU extension, declared in the header file @file{string.h}.
|
||||||
@end deftypefun
|
@end deftypefun
|
||||||
|
|
||||||
@deftypefun void sigabbrev_np (int @var{signum})
|
@deftypefun {const char *} sigabbrev_np (int @var{signum})
|
||||||
@standards{GNU, string.h}
|
@standards{GNU, string.h}
|
||||||
@safety{@mtsafe{}@assafe{}@acsafe{}}
|
@safety{@mtsafe{}@assafe{}@acsafe{}}
|
||||||
This function returns the abbreviation describing the signal @var{signum} or
|
This function returns the abbreviation describing the signal @var{signum} or
|
||||||
|
|
Loading…
Reference in New Issue