//////////////////////////////////////////////////////////////////////////// // File : malloc.h // Date : 05/03/2013 // Author : Jean-Baptiste Bréjon // Copyright (c) UPMC-LIP6 //////////////////////////////////////////////////////////////////////////// #ifndef _MALLOC_H_ #define _MALLOC_H_ #include "giet_config.h" //#define MALLOC_SELECTED 2 void * malloc(unsigned int size); void free(void * ptr); #endif // Local Variables: // tab-width: 4 // c-basic-offset: 4 // c-file-offsets:((innamespace . 0)(inline-open . 0)) // indent-tabs-mode: nil // End: // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4