Linux renaming from openzap to freetdm

git-svn-id: http://svn.openzap.org/svn/openzap/branches/sangoma_boost@967 a93c3328-9c30-0410-af19-c9cd2b2d52af
This commit is contained in:
Moises Silva
2010-01-15 19:22:49 +00:00
parent 0346bc76cc
commit 900f1ed2ef
90 changed files with 10653 additions and 12819 deletions

View File

@@ -32,7 +32,7 @@
* 2005 06 11 R. Krten created
*/
#include <openzap.h>
#include <freetdm.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -77,7 +77,7 @@ dsp_uart_handle_t *dsp_uart_create(dsp_uart_attr_t *attr)
{
dsp_uart_handle_t *handle;
handle = zap_malloc(sizeof (*handle));
handle = ftdm_malloc(sizeof (*handle));
if (handle) {
memset(handle, 0, sizeof (*handle));
@@ -90,7 +90,7 @@ dsp_uart_handle_t *dsp_uart_create(dsp_uart_attr_t *attr)
void dsp_uart_destroy(dsp_uart_handle_t **handle)
{
if (*handle) {
zap_safe_free(*handle);
ftdm_safe_free(*handle);
*handle = NULL;
}
}