fix error on windows qwen2-audio/whisper.cpp:9935:38: error: '_O_BINARY' was not declared in this scope
This commit is contained in:
parent
995baefeed
commit
a4747b2edb
1 changed files with 5 additions and 0 deletions
|
@ -60,6 +60,11 @@
|
|||
#include <functional>
|
||||
#include <codecvt>
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <io.h> // for _setmode
|
||||
#include <fcntl.h> // for _O_BINARY
|
||||
#endif
|
||||
|
||||
// third-party utilities
|
||||
// use your favorite implementations
|
||||
#define DR_WAV_IMPLEMENTATION
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue