From ec16902923962c0b5a8c94e1c1881b75001e890e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 13 Dec 2013 04:05:21 +0100 Subject: [PATCH] performance.c - avoid potential implicit declarations for memset and memcpy --- performance.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/performance.c b/performance.c index 9d30db442c..6f438ea74b 100644 --- a/performance.c +++ b/performance.c @@ -67,6 +67,8 @@ #include #endif +#include + #ifdef PERF_TEST #define MAX_COUNTERS 64 static struct rarch_perf_counter *perf_counters[MAX_COUNTERS];