mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-15 08:29:45 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11563 d0543943-73ff-0310-b7d9-9358b9ac24b2
44 lines
747 B
C
44 lines
747 B
C
/*
|
|
* SpanDSP - a series of DSP components for telephony
|
|
*
|
|
* inttypes.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.
|
|
*
|
|
* $Id: config.h,v 1.1 2009/01/29 18:30:14 steveu Exp $
|
|
*/
|
|
|
|
#if !defined(_MSVC_CONFIG_H_)
|
|
#define _MSVC_CONFIG_H_
|
|
|
|
#define HAVE_SINF
|
|
#define HAVE_COSF
|
|
#define HAVE_TANF
|
|
#define HAVE_ASINF
|
|
#define HAVE_ACOSF
|
|
#define HAVE_ATANF
|
|
#define HAVE_ATAN2F
|
|
#define HAVE_CEILF
|
|
#define HAVE_FLOORF
|
|
#define HAVE_POWF
|
|
#define HAVE_EXPF
|
|
#define HAVE_LOGF
|
|
#define HAVE_LOG10F
|
|
#define HAVE_MATH_H
|
|
#define HAVE_TGMATH_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|