|
From: <sv...@va...> - 2009-04-26 07:16:02
|
Author: bart
Date: 2009-04-26 08:15:58 +0100 (Sun, 26 Apr 2009)
New Revision: 9634
Log:
Fixed compiler warnings triggered by the test programs that include both <stdlib.h> and "pub_tool_oset.h".
Modified:
trunk/include/pub_tool_oset.h
Modified: trunk/include/pub_tool_oset.h
===================================================================
--- trunk/include/pub_tool_oset.h 2009-04-26 07:14:15 UTC (rev 9633)
+++ trunk/include/pub_tool_oset.h 2009-04-26 07:15:58 UTC (rev 9634)
@@ -99,7 +99,7 @@
// called.
extern OSet* VG_(OSetWord_Create) ( OSetAlloc_t alloc, HChar* ec,
- OSetFree_t free );
+ OSetFree_t _free );
extern void VG_(OSetWord_Destroy) ( OSet* os );
/*--------------------------------------------------------------------*/
@@ -185,7 +185,7 @@
extern OSet* VG_(OSetGen_Create) ( PtrdiffT keyOff, OSetCmp_t cmp,
OSetAlloc_t alloc, HChar* ec,
- OSetFree_t free );
+ OSetFree_t _free );
extern void VG_(OSetGen_Destroy) ( OSet* os );
extern void* VG_(OSetGen_AllocNode) ( OSet* os, SizeT elemSize );
extern void VG_(OSetGen_FreeNode) ( OSet* os, void* elem );
|