mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 01:26:58 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9425 d0543943-73ff-0310-b7d9-9358b9ac24b2
35 lines
522 B
C
35 lines
522 B
C
/*
|
|
* SpanDSP - a series of DSP components for telephony
|
|
*
|
|
* tgmath.h - a fudge for MSVC, which lacks this header
|
|
*
|
|
* Written by Steve Underwood <steveu@coppice.org>
|
|
*
|
|
* Copyright (C) 2006 Michael Jerris
|
|
*
|
|
*
|
|
* This file is released in the public domain.
|
|
*
|
|
*/
|
|
|
|
#if !defined(_TGMATH_H_)
|
|
#define _TGMATH_H_
|
|
|
|
#include <math.h>
|
|
|
|
#if !defined(M_PI)
|
|
/* C99 systems may not define M_PI */
|
|
#define M_PI 3.14159265358979323846264338327
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|