1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-04 17:51:03 +00:00

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

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