*** empty log message ***

This commit is contained in:
Cary Sandvig 2000-10-12 23:32:30 +00:00
parent 3fbeac2d8d
commit ab39318a14
3 changed files with 13 additions and 0 deletions

View File

@ -6,7 +6,9 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#ifndef WIN32
#include <sys/time.h> #include <sys/time.h>
#endif /* WIN32 */
#include <fcntl.h> #include <fcntl.h>

View File

@ -10,6 +10,12 @@
#include "mpg123.h" #include "mpg123.h"
#ifdef WIN32
#define SIGUSR1 0
#define SIGCONT 0
#define SIGSTOP 0
#endif /* WIN32 */
int outburst = MAXOUTBURST; int outburst = MAXOUTBURST;
int preload; int preload;

View File

@ -26,6 +26,7 @@
#endif #endif
#include "mpg123.h" #include "mpg123.h"
#define HAVE_INCLUDED_MPG123_H
#ifndef USE_MMAP #ifndef USE_MMAP
#include <sys/ipc.h> #include <sys/ipc.h>
@ -233,7 +234,11 @@ int xfermem_block (int readwrite, txfermem *xf)
#include <sys/types.h> #include <sys/types.h>
#include <fcntl.h> #include <fcntl.h>
#ifndef HAVE_INCLUDED_MPG123_H
#include "mpg123.h"
#else /* HAVE_INCLUDED_MPG123_H */
#include "xfermem.h" #include "xfermem.h"
#endif /* HAVE_INCLUDED_MPG123_H */
extern int errno; extern int errno;