diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-02-19 12:30:32 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-02-19 12:30:55 -0800 |
commit | d71ee32416a892aa3b13ffa1ad69d005fdb5781f (patch) | |
tree | 17b5ff15a45553972984c13caf6c7868d95ce2ba | |
parent | 38e8c084b95e98c4e763df8cfc43a141aa93fc5f (diff) | |
download | gnulib-d71ee32416a892aa3b13ffa1ad69d005fdb5781f.tar.gz |
Fix typo in stdnoreturn documentation.
-rw-r--r-- | doc/posix-headers/stdnoreturn.texi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/posix-headers/stdnoreturn.texi b/doc/posix-headers/stdnoreturn.texi index 9b500cc93e..19722bd1a3 100644 --- a/doc/posix-headers/stdnoreturn.texi +++ b/doc/posix-headers/stdnoreturn.texi @@ -28,6 +28,7 @@ directly. Although the resulting code operates correctly, the compiler is not informed whether @code{noreturn} functions do not return, so it may generate incorrect warnings at compile-time, or code that is slightly less optimized. This problem does not occur with +@code{_Noreturn}. @item Circa 2012 bleeding-edge GCC with @code{-Werror=old-style-declaration} requires @code{_Noreturn} or @code{noreturn} before the returned type |