X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=include%2Fmsvcrt%2Fmalloc.h;fp=include%2Fmsvcrt%2Fmalloc.h;h=212faa6f279664568045ea1103922a2737591580;hp=b907c22848c20dd3b5228f2497f9536e49d5237c;hb=e3ed2d773259cc445c7ff8181ebd934931365328;hpb=d378c68f5a9bb25c9e671dacd482d2e25d211df3 diff --git a/include/msvcrt/malloc.h b/include/msvcrt/malloc.h index b907c22..212faa6 100644 --- a/include/msvcrt/malloc.h +++ b/include/msvcrt/malloc.h @@ -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$ @@ -27,22 +27,22 @@ * */ -#ifndef __STRICT_ANSI__ +#ifndef __STRICT_ANSI__ #ifndef _MALLOC_H_ #define _MALLOC_H_ #include -#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 }