diff options
Diffstat (limited to 'src/memory.h')
-rw-r--r-- | src/memory.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/memory.h b/src/memory.h deleted file mode 100644 index 6e8f72f2..00000000 --- a/src/memory.h +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | /* Copyrights 2002 Luis Figueiredo (stdio@netc.pt) All rights reserved. | ||
2 | * | ||
3 | * See the LICENSE file | ||
4 | * | ||
5 | * The origin of this software must not be misrepresented, either by | ||
6 | * explicit claim or by omission. Since few users ever read sources, | ||
7 | * credits must appear in the documentation. | ||
8 | * | ||
9 | * date: Sat Mar 30 14:25:25 GMT 2002 | ||
10 | * | ||
11 | * memory functions | ||
12 | */ | ||
13 | |||
14 | #ifndef _MEMORY_H_ | ||
15 | #define _MEMORY_H_ | ||
16 | |||
17 | #include <stdio.h> | ||
18 | #include <stdlib.h> | ||
19 | #include <string.h> | ||
20 | #include <errno.h> | ||
21 | |||
22 | #define __ILWS_malloc malloc | ||
23 | #define __ILWS_calloc calloc | ||
24 | #define __ILWS_realloc realloc | ||
25 | #define __ILWS_free free | ||
26 | |||
27 | struct memrequest; | ||
28 | |||
29 | struct memrequest *__ILWS_init_buffer_list(); | ||
30 | |||
31 | void *__ILWS_add_buffer(struct memrequest *, | ||
32 | unsigned int); | ||
33 | |||
34 | void __ILWS_delete_buffer(struct memrequest *); | ||
35 | |||
36 | void __ILWS_delete_next_buffer(struct memrequest *); | ||
37 | |||
38 | void __ILWS_delete_buffer_list(struct memrequest *); | ||
39 | |||
40 | #endif | ||