See ChangeLog entry 2003-12-10 17:30 UTC-0500 David G. Holm <dholm@jsd-llc.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user