Mercurial > hg > audiostuff
view spandsp-0.0.6pre17/src/msvc/tgmath.h @ 5:f762bf195c4b
import spandsp-0.0.3
author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
---|---|
date | Fri, 25 Jun 2010 16:00:21 +0200 |
parents | 26cd8f1ef0b1 |
children |
line wrap: on
line source
/* * 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