Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Icecast-Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
94
Issues
94
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
Icecast-Server
Commits
5565b331
Commit
5565b331
authored
Mar 08, 2003
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include the automake config.h file if the application defines one
svn path=/trunk/avl/; revision=4450
parent
a3716577
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
1 deletion
+24
-1
src/avl/avl.c
src/avl/avl.c
+5
-1
src/httpp/httpp.c
src/httpp/httpp.c
+4
-0
src/net/resolver.c
src/net/resolver.c
+3
-0
src/net/sock.c
src/net/sock.c
+4
-0
src/thread/thread.c
src/thread/thread.c
+4
-0
src/timing/timing.c
src/timing/timing.c
+4
-0
No files found.
src/avl/avl.c
View file @
5565b331
...
...
@@ -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>
...
...
src/httpp/httpp.c
View file @
5565b331
...
...
@@ -3,6 +3,10 @@
** http parsing engine
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
...
...
src/net/resolver.c
View file @
5565b331
...
...
@@ -4,6 +4,9 @@
** name resolver library
**
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <sys/types.h>
...
...
src/net/sock.c
View file @
5565b331
...
...
@@ -19,6 +19,10 @@
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
...
...
src/thread/thread.c
View file @
5565b331
...
...
@@ -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>
...
...
src/timing/timing.c
View file @
5565b331
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment