diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2014-06-14 15:12:18 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2014-06-14 15:12:18 +0800 |
commit | ba5ba8c2e0cc8772c530c32353bf2a16144defac (patch) | |
tree | 1d1e6b18ddf0a016fdefac702a0a2d1f16e79cb3 | |
parent | 1bff9c9f0444630c630e5363fc28ede34574b455 (diff) | |
download | fastalg-protocol-ba5ba8c2e0cc8772c530c32353bf2a16144defac.tar.gz fastalg-protocol-ba5ba8c2e0cc8772c530c32353bf2a16144defac.tar.zst fastalg-protocol-ba5ba8c2e0cc8772c530c32353bf2a16144defac.zip |
dns: We need stdlib.h for malloc()
-rw-r--r-- | falgproto/falgproto-protocol-dns.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/falgproto/falgproto-protocol-dns.c b/falgproto/falgproto-protocol-dns.c index 5614024..2207922 100644 --- a/falgproto/falgproto-protocol-dns.c +++ b/falgproto/falgproto-protocol-dns.c @@ -8,6 +8,7 @@ #include <stdbool.h> #include <stdint.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> |