-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmemap.h
executable file
·19 lines (16 loc) · 1014 Bytes
/
memap.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/******************************************************************************/
/* For all support and information please contact: */
/* */
/* Sigurd Enghoff */
/* The Salk Institute, CNL */
/* [email protected] */
/* */
/* Additional ICA software: */
/* http://www.cnl.salk.edu/~enghoff/ */
/* */
/******************************************************************************/
#ifndef __memap_h
#define __memap_h
extern void *mapmalloc(int size);
extern void mapfree(void *addr, int size);
#endif