source: soft/giet_vm/libs/malloc.h @ 233

Last change on this file since 233 was 233, checked in by meunier, 11 years ago

Added the malloc files, forgotten at the previous commit...

File size: 639 bytes
Line 
1////////////////////////////////////////////////////////////////////////////
2// File     : malloc.h
3// Date     : 05/03/2013
4// Author   : Jean-Baptiste Bréjon
5// Copyright (c) UPMC-LIP6
6////////////////////////////////////////////////////////////////////////////
7
8#ifndef _MALLOC_H_
9#define _MALLOC_H_
10
11#include "giet_config.h"
12
13//#define MALLOC_SELECTED 2
14
15void * malloc(unsigned int size);
16void free(void * ptr);
17
18
19#endif
20
21// Local Variables:
22// tab-width: 4
23// c-basic-offset: 4
24// c-file-offsets:((innamespace . 0)(inline-open . 0))
25// indent-tabs-mode: nil
26// End:
27// vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
28
Note: See TracBrowser for help on using the repository browser.