diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-05-30 12:18:19 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-05-30 16:04:23 -0700 |
commit | 96609bb2f79ad9f9f12669af0cabf3d2947046b6 (patch) | |
tree | ee9e3fb9f0418d51105bff120b99bfb81b23611f /doc/posix-headers | |
parent | b117e55e41bb79b633cbd7992b9f7f532d3befcd (diff) | |
download | gnulib-96609bb2f79ad9f9f12669af0cabf3d2947046b6.tar.gz |
Use GCC_LINT, not lint
FreeBSD and Cygwin #define _Noreturn to empty if 'lint' is defined.
Problem reported by Ken Brown in: http://bugs.gnu.org/23640
* doc/posix-headers/stdnoreturn.texi (stdnoreturn.h):
Document problem with lint and _Noreturn.
* lib/diffseq.h (IF_LINT, IF_LINT2):
* lib/fts.c (sccsid):
* lib/getndelim2.c (IF_LINT):
* lib/gl_anylinked_list2.h (gl_linked_iterator)
(gl_linked_iterator_from_to):
* lib/gl_anytree_list2.h (gl_tree_iterator)
(gl_tree_iterator_from_to):
* lib/gl_anytree_oset.h (gl_tree_iterator):
* lib/gl_array_list.c (gl_array_iterator)
(gl_array_iterator_from_to):
* lib/gl_array_oset.c (gl_array_iterator):
* lib/gl_carray_list.c (gl_carray_iterator)
(gl_carray_iterator_from_to):
* lib/idcache.c:
* lib/inet_ntop.c (IF_LINT):
* lib/regcomp.c (build_charclass_op, create_tree):
* lib/regex_internal.c (re_acquire_state)
(re_acquire_state_context):
* lib/trigl.c (rcsid):
* lib/trim.c (IF_LINT):
* lib/vasnprintf.c (IF_LINT):
* lib/verify.h (assume):
Treat GCC_LINT like lint.
Diffstat (limited to 'doc/posix-headers')
-rw-r--r-- | doc/posix-headers/stdnoreturn.texi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/posix-headers/stdnoreturn.texi b/doc/posix-headers/stdnoreturn.texi index 19722bd1a3..1bb50b8d3b 100644 --- a/doc/posix-headers/stdnoreturn.texi +++ b/doc/posix-headers/stdnoreturn.texi @@ -22,6 +22,11 @@ Portability problems not fixed by Gnulib: You cannot assume that @code{_Noreturn} is a reserved word; it might be a macro. @item +When the macro @code{lint} is defined, standard headers define +@code{_Noreturn} (and therefore @code{noreturn}) to be a macro that +expands to the empty token sequence on some platforms: +Cygwin 2.5.1, FreeBSD 10.3. +@item On MSVC 9, @code{noreturn} expands to the empty token sequence, to avoid problems with standard headers that use @code{__declspec (noreturn)} directly. Although the resulting code operates correctly, the |