home *** CD-ROM | disk | FTP | other *** search
- /* $Id: lxmalloc.hpp,v 1.2 2002/04/26 23:09:23 smilcke Exp $ */
-
- /*
- * malloc.hpp
- * Autor: Stefan Milcke
- * Erstellt am: 27.10.2001
- * Letzte Aenderung am: 10.04.2002
- *
- */
-
- #ifndef MALLOC_HPP_INCLUDED
- #define MALLOC_HPP_INCLUDED
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- void *malloc(unsigned long size);
- void *realloc(void *oldPtr,unsigned long newSize);
- void free(void *ptr);
- int __mallocInit(void);
-
- #ifdef __cplusplus
- };
- #endif
-
-
-
- #endif //MALLOC_HPP_INCLUDED
-