1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-23 06:25:25 +00:00

include the automake config.h file if the application defines one

svn path=/trunk/avl/; revision=4450
This commit is contained in:
Karl Heyes 2003-03-08 16:05:38 +00:00
parent cd0f3c47e0
commit 2116bd0d5e
6 changed files with 24 additions and 1 deletions

View File

@ -22,13 +22,17 @@
*
*/
/* $Id: avl.c,v 1.2 2003/03/06 00:59:41 brendan Exp $ */
/* $Id: avl.c,v 1.3 2003/03/08 16:05:38 karl Exp $ */
/*
* This is a fairly straightfoward translation of a prototype
* written in python, 'avl_tree.py'. Read that file first.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>

View File

@ -3,6 +3,10 @@
** http parsing engine
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>

View File

@ -4,6 +4,9 @@
** name resolver library
**
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <sys/types.h>

View File

@ -19,6 +19,10 @@
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>

View File

@ -18,6 +18,10 @@
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -2,6 +2,10 @@
** - Timing functions
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <sys/types.h>
#ifdef HAVE_STDINT_H