summaryrefslogtreecommitdiffstats
path: root/ta
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-04-01 20:37:16 +0200
committerwm4 <wm4@nowhere>2017-04-01 20:37:16 +0200
commit6931fef4adfa96cef6a8dc67e89b4433aef72a36 (patch)
treed4f292d20dd087e362ffa5ac82a4acf3589c68a6 /ta
parenta071d5fcfeee4cc0ac58a4e0cf1968c8c92ff080 (diff)
downloadmpv-6931fef4adfa96cef6a8dc67e89b4433aef72a36.tar.bz2
mpv-6931fef4adfa96cef6a8dc67e89b4433aef72a36.tar.xz
ta_talloc: add missing include statement
Some array functions call memmove().
Diffstat (limited to 'ta')
-rw-r--r--ta/ta_talloc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ta/ta_talloc.h b/ta/ta_talloc.h
index f5eb35e17f..a145ba1e7d 100644
--- a/ta/ta_talloc.h
+++ b/ta/ta_talloc.h
@@ -14,6 +14,8 @@
#ifndef TA_TALLOC_H_
#define TA_TALLOC_H_
+#include <string.h>
+
#include "ta.h"
// Note: all talloc wrappers are wired to the "x" functions, which abort on OOM.