*** empty log message ***

This commit is contained in:
2006-11-29 03:19:49 +00:00
parent 34801c778f
commit 0955d4949e
7 changed files with 26 additions and 27 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: lsp.c,v 1.18 2006-11-29 02:54:17 bacon Exp $
* $Id: lsp.c,v 1.19 2006-11-29 03:19:48 bacon Exp $
*/
#if defined(__BORLANDC__)
@ -42,7 +42,7 @@ ase_lsp_t* ase_lsp_open (
syscas->dprintf == ASE_NULL ||
syscas->abort == ASE_NULL) return ASE_NULL;
#if defined(_WIN32) && defined(_DEBUG)
#if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
lsp = (ase_lsp_t*) malloc (ASE_SIZEOF(ase_lsp_t));
#else
lsp = (ase_lsp_t*) syscas->malloc (

View File

@ -1,5 +1,5 @@
/*
* $Id: lsp_i.h,v 1.4 2006-10-29 13:00:39 bacon Exp $
* $Id: lsp_i.h,v 1.5 2006-11-29 03:19:49 bacon Exp $
*/
#ifndef _ASE_LSP_LSPI_H_
@ -17,7 +17,7 @@
#pragma warning (disable: 4996)
#endif
#if defined(_WIN32) && defined(_DEBUG)
#if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>