summaryrefslogtreecommitdiff
path: root/addons/mp3
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2010-03-25 23:38:58 +0000
committerKevin P. Fleming <kpfleming@digium.com>2010-03-25 23:38:58 +0000
commitfff17a25ddc637a9253c758b7407aeda3f5244cb (patch)
tree9ee192b94224d4ea98ee2d5cb6bbc3d9bc56e006 /addons/mp3
parent0ec49aa3814797889e82bd9a0ed504962decbaa2 (diff)
Use "local" instead of "system" header file inclusion.
Now that these files are in the tree, they should prefer the tree's local copy of all Asterisk headers over any that may be installed. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@254931 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'addons/mp3')
-rw-r--r--addons/mp3/common.c4
-rw-r--r--addons/mp3/decode_ntom.c4
-rw-r--r--addons/mp3/interface.c4
-rw-r--r--addons/mp3/layer3.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/addons/mp3/common.c b/addons/mp3/common.c
index d8db2a3d2..9a6fd8c13 100644
--- a/addons/mp3/common.c
+++ b/addons/mp3/common.c
@@ -1,5 +1,5 @@
-#include <asterisk.h>
-#include <asterisk/logger.h>
+#include "asterisk.h"
+#include "asterisk/logger.h"
#include <ctype.h>
#include <stdlib.h>
diff --git a/addons/mp3/decode_ntom.c b/addons/mp3/decode_ntom.c
index b231f439f..e6b10a4c1 100644
--- a/addons/mp3/decode_ntom.c
+++ b/addons/mp3/decode_ntom.c
@@ -7,8 +7,8 @@
* N->M down/up sampling. Not optimized for speed.
*/
-#include <asterisk.h>
-#include <asterisk/logger.h>
+#include "asterisk.h"
+#include "asterisk/logger.h"
#include <stdlib.h>
#include <math.h>
#include <string.h>
diff --git a/addons/mp3/interface.c b/addons/mp3/interface.c
index 9ced53342..a71d15df5 100644
--- a/addons/mp3/interface.c
+++ b/addons/mp3/interface.c
@@ -1,5 +1,5 @@
-#include <asterisk.h>
-#include <asterisk/logger.h>
+#include "asterisk.h"
+#include "asterisk/logger.h"
#include <stdlib.h>
#include <stdio.h>
diff --git a/addons/mp3/layer3.c b/addons/mp3/layer3.c
index 793c99633..e6355764d 100644
--- a/addons/mp3/layer3.c
+++ b/addons/mp3/layer3.c
@@ -5,8 +5,8 @@
* All rights reserved. See also 'README'
*/
-#include <asterisk.h>
-#include <asterisk/logger.h>
+#include "asterisk.h"
+#include "asterisk/logger.h"
#include <stdlib.h>
#include "mpg123.h"
#include "mpglib.h"