2013-03-19 02:42 UTC+0100 Viktor Szakats (harbour syenar.net)

* doc/howtorep.txt
    * minor casing

  * src/vm/dlmalloc.c
  * src/vm/hvm.c
    ! fixed mingw -Wstrict-prototypes warnings
This commit is contained in:
Viktor Szakats
2013-03-19 02:43:35 +01:00
parent 575388299a
commit 24f82d4a5d
4 changed files with 13 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
/*
* $Id: f24e91f85dbca6c20679419a15c27d60b9971bab $
* $Id$
*/
/* Read doc/howtorep.txt and use this format for entry headers:
@@ -10,9 +10,17 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-03-19 02:42 UTC+0100 Viktor Szakats (harbour syenar.net)
* doc/howtorep.txt
* minor casing
* src/vm/dlmalloc.c
* src/vm/hvm.c
! fixed mingw -Wstrict-prototypes warnings
2013-03-18 17:25 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbtip/httpcli.prg
+ Added: method delete() to post DELETE verb required for
+ Added: method delete() to post DELETE verb required for
RESTful implementation.
2013-03-19 00:13 UTC+0100 Viktor Szakats (harbour syenar.net)

View File

@@ -33,7 +33,7 @@ by Viktor Szakats
3) Resolve any conflicts
4) Run 'hbrun bin/commit' to create new ChangeLog.txt entry
with timestamp and list of modified files
5) Edit ChangeLog.txt with a text editor (do not use Notepad.exe)
5) Edit ChangeLog.txt with a text editor (do not use notepad.exe)
6) Copy the last ChangeLog.txt entry to the clipboard
If it's a single atomic change, it's better to copy only
the description itself without the entry header and list

View File

@@ -1024,7 +1024,7 @@ DLMALLOC_EXPORT size_t dlmalloc_max_footprint(void);
guarantee that this number of bytes can actually be obtained from
the system.
*/
DLMALLOC_EXPORT size_t dlmalloc_footprint_limit();
DLMALLOC_EXPORT size_t dlmalloc_footprint_limit(void);
/*
malloc_set_footprint_limit();

View File

@@ -12232,6 +12232,7 @@ HB_LANG_REQUEST( HB_LANG_DEFAULT )
HB_EXTERN_BEGIN
extern void HB_FORCE_LINK_MAIN( void );
HB_EXTERN_END
extern void _hb_forceLinkMain( void );
void _hb_forceLinkMain()
{
HB_FORCE_LINK_MAIN();