ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
svn
/
hopm
/
trunk
/
src
/
memory.h
Revision:
5052
Committed:
Mon Dec 22 11:56:03 2014 UTC
(10 years, 8 months ago) by
michael
Content type:
text/x-chdr
Original Path:
hopm/trunk/src/malloc.h
File size:
222 byte(s)
Log Message:
- Initial import of bopm 3.1.3
File Contents
#
Content
1
#ifndef MALLOC_H
2
#define MALLOC_H
3
4
#include
<stdlib.h>
5
6
#define MyFree(X) _MyFree((void **) &X)
7
8
extern
void
*
MyMalloc
(
size_t
bytes
);
9
extern
void
_MyFree
(
void
**
var
);
10
char
*
DupString
(
const
char
*
y
);
11
12
#endif
/* MALLOC_H */