ref: fce8f063e38d86725b6b4d81c1ff42a82194146b
parent: 5215c8f0663707f0385fc13b154964261a0a7e22
author: Johann <johannkoenig@google.com>
date: Tue Jul 24 06:19:44 EDT 2012
Use vpx_integer.h instead of stdint.h vpx_integer accounts for win32, which does not have stdint.h Change-Id: I0ecf243ba56ed2e920e1293a6876c2e1ef1af99e
--- a/test/acm_random.h
+++ b/test/acm_random.h
@@ -11,8 +11,9 @@
#ifndef LIBVPX_TEST_ACM_RANDOM_H_
#define LIBVPX_TEST_ACM_RANDOM_H_
-#include <stdint.h>
#include <stdlib.h>
+
+#include "vpx/vpx_integer.h"
namespace libvpx_test {
--
⑨