home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lxapi32.zip / Lib32 / lxmalloc.hpp < prev    next >
C/C++ Source or Header  |  2002-04-26  |  516b  |  30 lines

  1. /* $Id: lxmalloc.hpp,v 1.2 2002/04/26 23:09:23 smilcke Exp $ */
  2.  
  3. /*
  4.  * malloc.hpp
  5.  * Autor:               Stefan Milcke
  6.  * Erstellt am:         27.10.2001
  7.  * Letzte Aenderung am: 10.04.2002
  8.  *
  9. */
  10.  
  11. #ifndef MALLOC_HPP_INCLUDED
  12. #define MALLOC_HPP_INCLUDED
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. void *malloc(unsigned long size);
  19. void *realloc(void *oldPtr,unsigned long newSize);
  20. void free(void *ptr);
  21. int __mallocInit(void);
  22.  
  23. #ifdef __cplusplus
  24. };
  25. #endif
  26.  
  27.  
  28.  
  29. #endif //MALLOC_HPP_INCLUDED
  30.