Commit 5a66b9fc authored by KO Myung-Hun's avatar KO Myung-Hun Committed by Rémi Denis-Courmont

OS/2: Include unistd.h in modules/access_output/files.c

Thie fixes the following error.

-----
make.exe[1]: Entering directory `F:/lang/work/vlc/vlc.git/modules/access_output'
  CC     libaccess_output_file_plugin_la-file.lo
file.c: In function 'Open':
file.c:142: error: 'STDOUT_FILENO' undeclared (first use in this function)
file.c:142: error: (Each undeclared identifier is reported only once
file.c:142: error: for each function it appears in.)
make.exe[1]: *** [libaccess_output_file_plugin_la-file.lo] Error 1
make.exe[1]: Leaving directory `F:/lang/work/vlc/vlc.git/modules/access_output'
make.exe: *** [all] Error 2
-----
Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent ed68c13d
......@@ -44,7 +44,9 @@
#if defined( WIN32 ) || defined( __OS2__ )
# include <io.h>
#else
#endif
#ifndef WIN32
# include <unistd.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