X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fxalloc.h;h=33f30d02da744c418b3ad56eb033fedfe97c92d8;hb=6debc6c79ba385d35f646e0958f84ace5b8f4b4d;hp=34f02d0ec1dd0ac7f20b0eba649c8c7820c358f7;hpb=5c76d51d0badd8a35e3883f18a5792e830448768;p=tinc diff --git a/src/xalloc.h b/src/xalloc.h index 34f02d0e..33f30d02 100644 --- a/src/xalloc.h +++ b/src/xalloc.h @@ -21,6 +21,8 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include "system.h" + static inline void *xmalloc(size_t n) __attribute__((__malloc__)); static inline void *xmalloc(size_t n) { void *p = malloc(n);