diff options
author | wm4 <wm4@nowhere> | 2014-07-02 22:01:56 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-07-02 22:01:56 +0200 |
commit | 703de5d84eec087e21ce15b7eb4be9d6e2336d50 (patch) | |
tree | d86eb1e89ac3ffac2c3e559a8ed929c81cf5c63c /stream | |
parent | 4f5f034ba2556fdbd3247922694da01576f4f9cd (diff) | |
download | mpv-703de5d84eec087e21ce15b7eb4be9d6e2336d50.tar.bz2 mpv-703de5d84eec087e21ce15b7eb4be9d6e2336d50.tar.xz |
cache_file: use unicode on windows
This enables the MinGW Windows crap wrapper for fopen().
Diffstat (limited to 'stream')
-rw-r--r-- | stream/cache_file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stream/cache_file.c b/stream/cache_file.c index dfdd8390dc..fc9b0e1a4b 100644 --- a/stream/cache_file.c +++ b/stream/cache_file.c @@ -17,6 +17,8 @@ #include <stdio.h> #include <stdint.h> +#include "osdep/io.h" + #include "common/common.h" #include "common/msg.h" |