fix build

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6909 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-12-20 03:01:53 +00:00
parent ef3fde4ddf
commit c267522cb7
1 changed files with 4 additions and 0 deletions

View File

@ -269,6 +269,10 @@ extern int sqlite3_iLine; /* Line number for debug info */
#else
#ifdef _MSC_VER
#define inline __inline
#endif
static inline void *zmalloc(size_t x)
{
void *z = malloc(x);