mirror of https://github.com/mpv-player/mpv
MINGW32 port
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9773 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
5d1765ffc7
commit
a66cc22948
|
@ -19,6 +19,9 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <signal.h>
|
||||
#ifdef __MINGW32__
|
||||
#define SIGQUIT 3
|
||||
#endif
|
||||
#include <sys/time.h>
|
||||
|
||||
#include "config.h"
|
||||
|
|
2
mixer.c
2
mixer.c
|
@ -1,6 +1,8 @@
|
|||
|
||||
#include <string.h>
|
||||
#ifndef __MINGW32__
|
||||
#include <sys/ioctl.h>
|
||||
#endif
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
|
Loading…
Reference in New Issue