FreeTDM: Fix private/libteletone*.h includes

libteletone headers include each other, use #include ""
to look in the local dir rather than the include search path.

Unbreaking all of my (still) external FreeTDM projects.

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
This commit is contained in:
Stefan Knoblich 2011-09-19 15:55:07 +02:00
parent 836804707a
commit 975ac0ac70
3 changed files with 4 additions and 4 deletions

View File

@ -136,8 +136,8 @@ typedef __int16 int16_t;
#endif #endif
#endif #endif
#include <libteletone_generate.h> #include "libteletone_generate.h"
#include <libteletone_detect.h> #include "libteletone_detect.h"
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
#include <string.h> #include <string.h>

View File

@ -96,7 +96,7 @@
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#include <libteletone.h> #include "libteletone.h"
/*! \file libteletone_detect.h /*! \file libteletone_detect.h
\brief Tone Detection Routines \brief Tone Detection Routines

View File

@ -116,7 +116,7 @@ extern float powf (float, float);
#endif #endif
#include <assert.h> #include <assert.h>
#include <stdarg.h> #include <stdarg.h>
#include <libteletone.h> #include "libteletone.h"
#define TELETONE_VOL_DB_MAX 0 #define TELETONE_VOL_DB_MAX 0
#define TELETONE_VOL_DB_MIN -63 #define TELETONE_VOL_DB_MIN -63