Skip to content
Snippets Groups Projects
Select Git revision
  • bb2f418ba9da6facaf62c151c557e885712837fd
  • master default protected
2 results

onelab_optimize.py

Blame
  • MallocUtils.h 433 B
    // GetDP - Copyright (C) 1997-2018 P. Dular and C. Geuzaine, University of Liege
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to the public mailing list <getdp@onelab.info>.
    
    #ifndef _MALLOC_UTILS_H_
    #define _MALLOC_UTILS_H_
    
    #include <stdlib.h>
    
    void *Malloc(size_t size);
    void *Calloc(size_t num, size_t size);
    void *Realloc(void *ptr, size_t size);
    void  Free(void *ptr);
    
    #endif