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, 7 Jun 2015 20:25:22 +0000 (22:25 +0200)
commitab0576a2034b03f92943ac477e4e97731a899554
tree88d2108e637968393b7832bd38b084db54551be7
parent84ecc972e5c11f683ac618c5a734a17c295d9b46
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