Read in configuration settings from config.h. paranoia was GNU/Linux based

so the #includes had been set specific to that.
This commit is contained in:
rocky
2004-12-22 09:41:58 +00:00
parent ce38e7dea6
commit b273f5bf95
4 changed files with 36 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
/*
$Id: p_block.c,v 1.1 2004/12/18 17:29:32 rocky Exp $
$Id: p_block.c,v 1.2 2004/12/22 09:41:58 rocky Exp $
Copyright (C) 2004 Rocky Bernstein <rocky@panix.com>
Copyright (C) 1998 Monty xiphmont@mit.edu
@@ -19,9 +19,17 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include <stdio.h>
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include <limits.h>
#include "p_block.h"
#include <cdio/cdda_interface.h>