Commit bf0cef5c authored by Martin Storsjö's avatar Martin Storsjö

checkasm: Include io.h for isatty, if available

configure does check for isatty, and checkasm properly checks
HAVE_ISATTY, but on some platforms (e.g. WinRT), io.h needs to be
included for isatty to be available.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 9487ffd4
......@@ -29,6 +29,10 @@
#include "libavutil/cpu.h"
#include "libavutil/random_seed.h"
#if HAVE_IO_H
#include <io.h>
#endif
#if ARCH_X86
#include "libavutil/x86/cpu.h"
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment