2008-09-18 22:00 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* source/vm/fm.c
    ! Suppressing warnings for foreign dmalloc.c code for BCC.
This commit is contained in:
Viktor Szakats
2008-09-18 20:01:14 +00:00
parent c0d658d6ef
commit 57707cd31e
2 changed files with 20 additions and 0 deletions

View File

@@ -8,6 +8,10 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-09-18 22:00 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/vm/fm.c
! Suppressing warnings for foreign dmalloc.c code for BCC.
2008-09-18 21:31 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* contrib/xhb/Makefile
* contrib/xhb/common.mak

View File

@@ -114,7 +114,23 @@
# if defined( HB_MT_VM )
# define USE_LOCKS 1
# endif
# if defined( __BORLANDC__ )
# pragma warn -aus
# pragma warn -ccc
# pragma warn -eff
# pragma warn -ngu
# pragma warn -prc
# pragma warn -rch
# endif
# include "dlmalloc.c"
# if defined( __BORLANDC__ )
# pragma warn +aus
# pragma warn +ccc
# pragma warn +eff
# pragma warn +ngu
# pragma warn +prc
# pragma warn +rch
# endif
# if defined( USE_DL_PREFIX )
# define malloc( n ) dlmalloc( (n) )
# define realloc( p, n ) dlrealloc( (p), (n) )