| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
|
| |
|
|
|
|
|
|
|
|
| |
Make it safe, and update man page with the useful information.
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Notes:
svn path=/head/; revision=325389
|
| |
|
|
|
|
|
|
|
| |
Reported by: make manlint
MFC after: 2 weeks
Sponsored by: Dell EMC Isilon
Notes:
svn path=/head/; revision=318710
|
| |
|
|
|
|
|
|
| |
MFC after: 1 month
Sponsored by: The FreeBSD Foundation
Notes:
svn path=/head/; revision=275752
|
| |
|
|
|
|
|
|
| |
Reviewed by: theraven
MFC after: 1 week
Notes:
svn path=/head/; revision=238802
|
| |
|
|
|
|
|
|
| |
Reviewed by: pluknet
Approved by: dim (mentor)
Notes:
svn path=/head/; revision=228329
|
|
|
__noreturn macro and modify the other exiting functions to use it.
The __noreturn macro, unlike __dead2, must be used BEFORE the function.
This is in line with the C and C++ specifications that place _Noreturn (c1x)
and [[noreturn]] (C++11) in front of the functions. As with __dead2, this
macro falls back to using the GCC attribute.
Unfortunately, clang currently sets the same value for the C version macro
in C99 and C1x modes, so these functions are hidden by default. At some
point before 10.0, I need to go through the headers and clean up the C1x /
C++11 visibility.
Reviewed by: brooks (mentor)
Notes:
svn path=/head/; revision=228322
|