1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-07-21 03:04:15 -04:00

Cleanup: Corrected include guards

This commit is contained in:
Philipp Schafft 2018-10-12 10:16:06 +00:00
parent e4a483d71e
commit 60ab7b13b7
8 changed files with 16 additions and 16 deletions

View File

@ -4,8 +4,8 @@
/* $Id: avl.h,v 1.7 2003/07/07 01:10:14 brendan Exp $ */
#ifndef __AVL_H
#define __AVL_H
#ifndef _LIBIGLOO__AVL_H_
#define _LIBIGLOO__AVL_H_
#ifdef __cplusplus
extern "C" {

View File

@ -22,8 +22,8 @@
**
*/
#ifndef __ENCODING_H
#define __ENCODING_H
#ifndef _LIBIGLOO__ENCODING_H_
#define _LIBIGLOO__ENCODING_H_
#include <sys/types.h>

View File

@ -24,8 +24,8 @@
**
*/
#ifndef __HTTPP_H
#define __HTTPP_H
#ifndef _LIBIGLOO__HTTPP_H_
#define _LIBIGLOO__HTTPP_H_
#include <avl/avl.h>

View File

@ -26,8 +26,8 @@
**
*/
#ifndef __LOG_H__
#define __LOG_H__
#ifndef _LIBIGLOO__LOG_H_
#define _LIBIGLOO__LOG_H_
#include <stdio.h>

View File

@ -23,8 +23,8 @@
*
*/
#ifndef __RESOLVER_H
#define __RESOLVER_H
#ifndef _LIBIGLOO__RESOLVER_H_
#define _LIBIGLOO__RESOLVER_H_
/*

View File

@ -24,8 +24,8 @@
*
*/
#ifndef __SOCK_H
#define __SOCK_H
#ifndef _LIBIGLOO__SOCK_H_
#define _LIBIGLOO__SOCK_H_
#include <stdarg.h>

View File

@ -23,8 +23,8 @@
*
*/
#ifndef __THREAD_H__
#define __THREAD_H__
#ifndef _LIBIGLOO__THREAD_H_
#define _LIBIGLOO__THREAD_H_
#include <pthread.h>

View File

@ -24,8 +24,8 @@
*
*/
#ifndef __TIMING_H__
#define __TIMING_H__
#ifndef _LIBIGLOO__TIMING_H_
#define _LIBIGLOO__TIMING_H_
#include <sys/types.h>
#ifdef HAVE_INTTYPES_H