Browse Source

vlc_fs: include io.h on OS/2

This fixes many 'implicit declaration of function' errors due to read()
, close() and so on at various places. For example,
src/input/vlmshell.c.
pull/189/head
KO Myung-Hun 8 months ago
committed by Jean-Baptiste Kempf
parent
commit
750a92a7b3
  1. 3
      include/vlc_fs.h

3
include/vlc_fs.h

@ -45,6 +45,9 @@ struct iovec;
# define lseek lseek64
#endif
#ifdef __OS2__
# include <io.h>
#endif
/**
* \defgroup os Operating system

Loading…
Cancel
Save