File: memory.h

package info (click to toggle)
abiword 0.7.7-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 20,604 kB
  • ctags: 18,358
  • sloc: cpp: 88,791; ansic: 66,296; sh: 7,777; makefile: 3,397; xml: 687; perl: 361; awk: 273; sed: 36; csh: 28
file content (26 lines) | stat: -rw-r--r-- 418 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
  ImageMagick Memory Allocation Methods.
*/
#ifndef _MEMORY_H
#define _MEMORY_H

#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif

#if defined(WITH_DMALLOC)
#include <dmalloc.h>
#endif
/*
  Memory declarations.
*/
extern Export void
  *AllocateMemory(const size_t),
  FreeMemory(void *),
  *ReallocateMemory(void *,const size_t);

#if defined(__cplusplus) || defined(c_plusplus)
}
#endif

#endif