More include fixes

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@892 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Mark Spencer 22 years ago
parent c4225d255e
commit 82082c0a35

@ -26,7 +26,11 @@
#include <stdlib.h>
#include <pthread.h>
#include <sys/time.h>
#ifdef __linux__
#include <linux/soundcard.h>
#else
#include <soundcard.h>
#endif
#include <netinet/in.h>
#define DEV_DSP "/dev/dsp"

@ -33,7 +33,11 @@
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#ifdef __linux
#include <linux/soundcard.h>
#else
#include <soundcard.h>
#endif
#include "busy.h"
#include "ringtone.h"
#include "ring10.h"

@ -25,7 +25,11 @@
#include <errno.h>
#include <string.h>
#include <pthread.h>
#ifdef __linux__
#include <endian.h>
#else
#include <machine/endian.h>
#endif
/* Some Ideas for this code came from makeg729e.c by Jeffery Chilton */

@ -25,7 +25,11 @@
#include <errno.h>
#include <string.h>
#include <pthread.h>
#ifdef __linux__
#include <endian.h>
#else
#include <machine/endian.h>
#endif
/* Some Ideas for this code came from makegsme.c by Jeffery Chilton */

@ -26,8 +26,11 @@
#include <errno.h>
#include <string.h>
#include <pthread.h>
#ifdef __linux__
#include <endian.h>
#else
#include <machine/endian.h>
#endif
static char *desc = "JPEG (Joint Picture Experts Group) Image Format";

@ -25,7 +25,11 @@
#include <errno.h>
#include <string.h>
#include <pthread.h>
#ifdef __linux__
#include <endian.h>
#else
#include <machine/endian.h>
#endif
#define BUF_SIZE 160 /* 160 samples */

@ -27,7 +27,11 @@
#include <errno.h>
#include <string.h>
#include <pthread.h>
#ifdef __linux__
#include <endian.h>
#else
#include <machine/endian.h>
#endif
#define BUF_SIZE 160 /* 160 samples */

@ -25,7 +25,11 @@
#include <errno.h>
#include <string.h>
#include <pthread.h>
#ifdef __linux__
#include <endian.h>
#else
#include <machine/endian.h>
#endif
#define BUF_SIZE 80 /* 160 samples */

@ -25,7 +25,11 @@
#include <errno.h>
#include <string.h>
#include <pthread.h>
#ifdef __linux__
#include <endian.h>
#else
#include <machine/endian.h>
#endif
/* Some Ideas for this code came from makewave.c by Jeffery Chilton */

@ -25,7 +25,11 @@
#include <errno.h>
#include <string.h>
#include <pthread.h>
#ifdef __linux__
#include <endian.h>
#else
#include <machine/endian.h>
#endif
#include "msgsm.h"
/* Some Ideas for this code came from makewave.c by Jeffery Chilton */

@ -20,7 +20,11 @@
extern "C" {
#endif
#ifdef __linux__
#include <endian.h>
#else
#include <machine/endian.h>
#endif
#include <sys/types.h>
//! Data structure associated with a single frame of data

Loading…
Cancel
Save