From 9eb7f7cbc79d018c7cbe7731c959a00f3e9f5bff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 31 Dec 2018 12:09:42 +0000 Subject: [PATCH] webrtc: include stdlib.h for atoi() Fixes #857 --- ext/webrtc/webrtcsdp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/webrtc/webrtcsdp.c b/ext/webrtc/webrtcsdp.c index c3bf8293ae..715391ba22 100644 --- a/ext/webrtc/webrtcsdp.c +++ b/ext/webrtc/webrtcsdp.c @@ -26,6 +26,7 @@ #include "utils.h" #include +#include #define IS_EMPTY_SDP_ATTRIBUTE(val) (val == NULL || g_strcmp0(val, "") == 0)