See ChangeLog entry 19990917-21:10 EDT David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
1999-09-18 01:25:10 +00:00
parent b29a6ead13
commit 8799bf1516
2 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
19990917-21:10 EDT David G. Holm <dholm@jsd-llc.com>
* include/extend.h
% Changed local pointers in hb_xmemcpy() and hb_xmemset()
from void * to BYTE * to keep Borland C compiler happy.
19990917-18:00 EDT David G. Holm <dholm@jsd-llc.com>
* include/extend.h

View File

@@ -676,8 +676,8 @@ void hb_stornd( double dNumber, int iParam, ... )
void * hb_xmemcpy( void * pDestArg, void * pSourceArg, ULONG ulLen )
{
void * pDest = pDestArg;
void * pSource = pSourceArg;
BYTE * pDest = ( BYTE * ) pDestArg;
BYTE * pSource = ( BYTE * ) pSourceArg;
ULONG ulRemaining = ulLen;
int iCopySize;
@@ -703,7 +703,7 @@ void * hb_xmemcpy( void * pDestArg, void * pSourceArg, ULONG ulLen )
void * hb_xmemset( void * pDestArg, int iFill, ULONG ulLen )
{
void * pDest = pDestArg;
BYTE * pDest = ( BYTE * ) pDestArg;
ULONG ulRemaining = ulLen;
int iSetSize;