diff options
author | Gregory Maxwell <greg@xiph.org> | 2012-07-14 11:00:24 -0400 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2012-07-14 11:00:24 -0400 |
commit | ce878836864b1db3f2bf01575a36a2b230668bd8 (patch) | |
tree | 5e2bf7b15b5f15baef0297cc2b11582972aee162 /tests/test_opus_decode.c | |
parent | 619aa8b26812c4dc7b344441ee9f315b2019f15c (diff) | |
download | opus-ce878836864b1db3f2bf01575a36a2b230668bd8.tar.gz |
Fix headers by mingw broken by recent win32 changes.
Diffstat (limited to 'tests/test_opus_decode.c')
-rw-r--r-- | tests/test_opus_decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_opus_decode.c b/tests/test_opus_decode.c index 74508a0e..ea970927 100644 --- a/tests/test_opus_decode.c +++ b/tests/test_opus_decode.c @@ -36,7 +36,7 @@ #include <math.h> #include <string.h> #include <time.h> -#ifndef _WIN32 +#if (!defined WIN32 && !defined _WIN32) || defined(__MINGW32__) #include <unistd.h> #endif #include "opus.h" |