Remove a number of GNU/Linux and/or Unix #includes that probably don't

belong. #ifdef some of the others, although I think they'll likely be
there.
This commit is contained in:
rocky
2005-02-03 07:28:40 +00:00
parent 8e3f28bdd9
commit 3b6c362c6e

View File

@@ -1,5 +1,5 @@
/* /*
$Id: low_interface.h,v 1.5 2005/01/07 22:15:25 rocky Exp $ $Id: low_interface.h,v 1.6 2005/02/03 07:28:40 rocky Exp $
Copyright (C) 2004, 2005 Rocky Bernstein <rocky@panix.com> Copyright (C) 2004, 2005 Rocky Bernstein <rocky@panix.com>
Copyright (C) 1998 Monty xiphmont@mit.edu Copyright (C) 1998 Monty xiphmont@mit.edu
@@ -23,20 +23,18 @@
#ifndef _CDDA_LOW_INTERFACE_ #ifndef _CDDA_LOW_INTERFACE_
#define _CDDA_LOW_INTERFACE_ #define _CDDA_LOW_INTERFACE_
#include <stdio.h> #ifdef HAVE_STDIO_H
#include <stdlib.h> #include <stdlib.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h> #include <string.h>
#endif
#ifdef HAVE_ERRNO_H
#include <errno.h> #include <errno.h>
#include <fcntl.h> #endif
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <sys/shm.h>
#include <sys/time.h>
#include <sys/types.h>
#ifdef HAVE_LINUX_VERSION_H #ifdef HAVE_LINUX_VERSION_H
#include <linux/version.h> #include <linux/version.h>