Fix Changelog typo.
[gnulib.git] / modules / stdnoreturn
blobe283fd18fb201a03156c178a97314242ddb80cdc
1 Description:
2 A <stdnoreturn.h> that nearly conforms to ISO C11.
4 Notice:
5 The module 'stdnoreturn' is deprecated.
6 New code should use the '_Noreturn' keyword or the 'noreturn' module.
8 Files:
9 lib/stdnoreturn.in.h
10 m4/stdnoreturn.m4
12 Depends-on:
13 gen-header
14 snippet/_Noreturn
16 configure.ac:
17 gl_STDNORETURN_H
18 gl_CONDITIONAL_HEADER([stdnoreturn.h])
19 AC_PROG_MKDIR_P
21 Makefile.am:
22 BUILT_SOURCES += $(STDNORETURN_H)
24 # We need the following in order to create <stdnoreturn.h> when the system
25 # doesn't have one that works.
26 if GL_GENERATE_STDNORETURN_H
27 stdnoreturn.h: stdnoreturn.in.h $(top_builddir)/config.status $(_NORETURN_H)
28 @NMD@   $(AM_V_GEN)$(MKDIR_P) '%reldir%'
29         $(gl_V_at)$(SED_HEADER_STDOUT) \
30           -e '/definition of _Noreturn/r $(_NORETURN_H)' \
31           $(srcdir)/stdnoreturn.in.h > $@-t
32         $(AM_V_at)mv $@-t $@
33 else
34 stdnoreturn.h: $(top_builddir)/config.status
35         rm -f $@
36 endif
37 MOSTLYCLEANFILES += stdnoreturn.h stdnoreturn.h-t
39 Include:
40 <stdnoreturn.h>
42 License:
43 LGPLv2+
45 Maintainer:
46 Paul Eggert