See ChangeLog entry 2003-12-10 17:30 UTC-0500 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2003-12-10 22:30:56 +00:00
parent af7b36d194
commit 6da61c5814
7 changed files with 25 additions and 6 deletions

View File

@@ -8,6 +8,17 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2003-12-10 17:30 UTC-0500 David G. Holm <dholm@jsd-llc.com>
* source/compiler/harbour.c
* source/compiler/harbour.sly
* source/compiler/harbour.y
* source/rtl/isprint.c
* source/vm/fm.c
* source/vm/hvm.c
! Never include malloc.h, because: 1) It been obsoleted by stdlib.h
in Standard C; and 2) The use of malloc.h is forbidden in GCC 3.x.
2003-12-05 16:05 UTC+0100 Ryszard Glab <rglab@imid.med.pl>
* source/rtl/gtcrs/gtcrs.c
* characters with code > 128 are displayed correctly now

View File

@@ -46,7 +46,9 @@
*
*/
#include <malloc.h> /* required for allocating and freeing memory */
/* malloc.h has been obsoleted by stdlib.h, which is included via hbcomp.h
#include <malloc.h>
*/
#include "hbcomp.h"
#include "hbhash.h"

View File

@@ -33,7 +33,9 @@
* 2) Support this syntax: nPtr := @Hello()
*/
/* malloc.h has been obsoleted by stdlib.h, which is included via hbcomp.h
#include <malloc.h>
*/
#include "hbcomp.h"

View File

@@ -33,7 +33,9 @@
* 2) Support this syntax: nPtr := @Hello()
*/
/* malloc.h has been obsoleted by stdlib.h, which is included via hbcomp.h
#include <malloc.h>
*/
#include "hbcomp.h"

View File

@@ -69,7 +69,7 @@
#if defined(HB_OS_WIN_32) && !defined(__RSXNT__)
#include <stdio.h>
#include <malloc.h>
/// #include <malloc.h>
#include <winspool.h>
static BOOL IsPrinterError(HANDLE hPrinter);

View File

@@ -74,9 +74,10 @@
#define INCL_DOSERRORS
#define INCL_DOSPROCESS
#ifndef __MPW__
/* malloc.h has been obsoleted by stdlib.h, which is included via
hbvmpub.h, which is include via hbapi.h
#include <malloc.h>
#endif
*/
#include "hbapi.h"
#include "hbstack.h"

View File

@@ -66,9 +66,10 @@
*
*/
#ifndef __MPW__
/* malloc.h has been obsoleted by stdlib.h, which is included via
hbvmpub.h, which is include via hbapi.h
#include <malloc.h>
#endif
*/
#include <math.h>
#include <time.h>