got rid of dos fileendings suddenly appearing in this file

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7697 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michal Bielicki 2008-02-19 08:53:29 +00:00
parent bd09dd9707
commit fb4dceeed0
1 changed files with 7 additions and 7 deletions

View File

@ -54,13 +54,13 @@ typedef int (span_tx_handler_t)(void *s, int16_t amp[], int max_len);
#if !defined(TRUE)
#define TRUE (!FALSE)
#endif
#include <assert.h>
#if (_MSC_VER >= 1400) // VC8+
#define vc_assert(expr) assert(expr);__analysis_assume( expr )
#else
#define vc_assert(expr) assert(expr)
#endif
#include <assert.h>
#if (_MSC_VER >= 1400) // VC8+
#define vc_assert(expr) assert(expr);__analysis_assume( expr )
#else
#define vc_assert(expr) assert(expr)
#endif
#if defined(__cplusplus)
/* C++ doesn't seem to have sane rounding functions/macros yet */