fix prev checkin
This commit is contained in:
parent
e7a057adb6
commit
80df4bfae2
|
|
@ -1,6 +1,8 @@
|
|||
|
||||
#include "mpg123.h"
|
||||
#ifdef WIN32
|
||||
#include <io.h>
|
||||
#endif
|
||||
#include <stdlib.h>
|
||||
|
||||
void audio_info_struct_init(struct audio_info_struct *ai)
|
||||
|
|
|
|||
|
|
@ -10,8 +10,11 @@
|
|||
#include <sys/time.h>
|
||||
#endif /* WIN32 */
|
||||
|
||||
#include <fcntl.h>
|
||||
#ifdef WIN32
|
||||
#include <io.h>
|
||||
#endif
|
||||
|
||||
#include <fcntl.h>
|
||||
|
||||
#ifdef READ_MMAP
|
||||
#include <sys/mman.h>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,9 @@
|
|||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#ifdef WIN32
|
||||
#include <io.h>
|
||||
#endif
|
||||
#include "mpg123.h"
|
||||
#include "mpgbuffer.h"
|
||||
#include "common.h"
|
||||
|
|
|
|||
|
|
@ -20,7 +20,9 @@
|
|||
#include <sys/mman.h>
|
||||
#include <sys/socket.h>
|
||||
#include <fcntl.h>
|
||||
#ifdef WIN32
|
||||
#include <io.h>
|
||||
#endif
|
||||
|
||||
#ifdef AIX
|
||||
#include <sys/select.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue