Fix autoconf check for function attributes.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 7 Jun 2015 20:25:22 +0000 (22:25 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 5 Jul 2015 12:59:26 +0000 (14:59 +0200)
commita7722e1a65ab2e5d538fefe1c8b3352ddcc38213
treef25c197a876e464a0091f0ecb09091a1b483016c
parent5046dbd40c7cc572b84f28412723934bf392cb0d
Fix autoconf check for function attributes.

GCC warns when a function attribute has no effect. The autoconf check
turns warnings about attributes into errors, therefore thinking that
they did not work. The reason was that the test function returned void,
which is not suitable for checking both __malloc__ and
__warn_unused_result__.
m4/attribute.m4