update for HEAD-2003021201
[reactos.git] / include / msvcrt / malloc.h
index b907c22..212faa6 100644 (file)
@@ -18,7 +18,7 @@
  *
  *  This code is distributed in the hope that it will be useful but
  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
- *  DISCLAMED. This includes but is not limited to warranties of
+ *  DISCLAIMED. This includes but is not limited to warranties of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  *
  * $Revision$
  *
  */
 
-#ifndef        __STRICT_ANSI__
+#ifndef __STRICT_ANSI__
 
 #ifndef _MALLOC_H_
 #define _MALLOC_H_
 
 #include <msvcrt/alloc.h>
 
-#ifdef __cplusplus
+#ifdef  __cplusplus
 extern "C" {
 #endif
 
-void * _expand( void *memblock, size_t size );
-int    _heapchk (void);        /* Verify heap integrety. */
-int    _heapmin (void);        /* Return unused heap to the OS. */
-int    _heapset (unsigned int unFill);
-size_t _msize (void* pBlock);
+int _heapchk(void);    /* Verify heap integrety. */
+int _heapmin(void);    /* Return unused heap to the OS. */
+int _heapset(unsigned int);
+size_t _msize(void*);
+void* _expand(void*, size_t);
 
 #ifdef __cplusplus
 }