summaryrefslogtreecommitdiffstats
path: root/win/tclWinPort.h
diff options
context:
space:
mode:
Diffstat (limited to 'win/tclWinPort.h')
-rw-r--r--win/tclWinPort.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h
index 8ab4548..d426e7d 100644
--- a/win/tclWinPort.h
+++ b/win/tclWinPort.h
@@ -512,12 +512,12 @@ typedef DWORD_PTR * PDWORD_PTR;
* use by tclAlloc.c.
*/
-#define TclpSysAlloc(size) ((void*)HeapAlloc(GetProcessHeap(), \
- 0, size))
-#define TclpSysFree(ptr) (HeapFree(GetProcessHeap(), \
- 0, (HGLOBAL)ptr))
-#define TclpSysRealloc(ptr, size) ((void*)HeapReAlloc(GetProcessHeap(), \
- 0, (LPVOID)ptr, size))
+#define TclpSysAlloc(size) \
+ ((void*)HeapAlloc(GetProcessHeap(), 0, size))
+#define TclpSysFree(ptr) \
+ (HeapFree(GetProcessHeap(), 0, (HGLOBAL)ptr))
+#define TclpSysRealloc(ptr, size) \
+ ((void*)HeapReAlloc(GetProcessHeap(), 0, (LPVOID)ptr, size))
/* This type is not defined in the Windows headers */
#define socklen_t int