X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fxalloc.h;h=33f30d02da744c418b3ad56eb033fedfe97c92d8;hb=2c6b2d70e6640f39563ad7bb0aa0ba87f883848c;hp=34f02d0ec1dd0ac7f20b0eba649c8c7820c358f7;hpb=b18d5b572992debb04a7851e43143711319243a0;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);