POSIX API without _CRTIMP (Part 1 of X).



git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@122 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-headers/include/stdlib.h b/mingw-w64-headers/include/stdlib.h
index 856c605..4b2e700 100755
--- a/mingw-w64-headers/include/stdlib.h
+++ b/mingw-w64-headers/include/stdlib.h
@@ -335,10 +335,10 @@
 
 #ifndef _CRT_ALLOCATION_DEFINED
 #define _CRT_ALLOCATION_DEFINED
-  _CRTIMP void *__cdecl calloc(size_t _NumOfElements,size_t _SizeOfElements);
-  _CRTIMP void __cdecl free(void *_Memory);
-  _CRTIMP void *__cdecl malloc(size_t _Size);
-  _CRTIMP void *__cdecl realloc(void *_Memory,size_t _NewSize);
+  void *__cdecl calloc(size_t _NumOfElements,size_t _SizeOfElements);
+  void __cdecl free(void *_Memory);
+  void *__cdecl malloc(size_t _Size);
+  void *__cdecl realloc(void *_Memory,size_t _NewSize);
   _CRTIMP void *__cdecl _recalloc(void *_Memory,size_t _Count,size_t _Size);
   //_CRTIMP void __cdecl _aligned_free(void *_Memory);
   //_CRTIMP void *__cdecl _aligned_malloc(size_t _Size,size_t _Alignment);