base64: provide a fast path for encoding well sized buffers
[gnulib.git] / modules / snippet / warn-on-use
1 Description:
2 A C macro for emitting a warning if a function is used.
3
4 Applicability:
5 all
6
7 Files:
8 build-aux/snippet/warn-on-use.h
9 m4/warn-on-use.m4
10
11 Depends-on:
12
13 configure.ac:
14
15 Makefile.am:
16 BUILT_SOURCES += warn-on-use.h
17 # The warn-on-use.h that gets inserted into generated .h files is the same as
18 # build-aux/snippet/warn-on-use.h, except that it has the copyright header cut
19 # off.
20 warn-on-use.h: $(top_srcdir)/build-aux/snippet/warn-on-use.h
21         $(AM_V_GEN)rm -f $@-t $@ && \
22         sed -n -e '/^.ifndef/,$$p' \
23           < $(top_srcdir)/build-aux/snippet/warn-on-use.h \
24           > $@-t && \
25         mv $@-t $@
26 MOSTLYCLEANFILES += warn-on-use.h warn-on-use.h-t
27
28 WARN_ON_USE_H=warn-on-use.h
29
30 Include:
31
32 License:
33 LGPLv2+
34
35 Maintainer:
36 Eric Blake