Graphviz  2.39.20161002.2149
Macros | Typedefs | Variables
vmstub.h File Reference
#include <stdlib.h>
Include dependency graph for vmstub.h:

Go to the source code of this file.

Macros

#define vmalloc(heap, size)   malloc(size)
 
#define vmopen(x, y, z)   (Vmalloc_t*)(0)
 
#define vmclose(x)   while (0)
 
#define vmresize(heap, ptr, size, oktomoveflag)   realloc((ptr),(size))
 
#define vmfree(heap, ptr)   free(ptr)
 
#define EXTERN   extern
 

Typedefs

typedef void Vmalloc_t
 

Variables

EXTERN void * Vmregion
 

Macro Definition Documentation

#define EXTERN   extern

Definition at line 27 of file vmstub.h.

#define vmalloc (   heap,
  size 
)    malloc(size)

Definition at line 21 of file vmstub.h.

#define vmclose (   x)    while (0)

Definition at line 23 of file vmstub.h.

#define vmfree (   heap,
  ptr 
)    free(ptr)

Definition at line 25 of file vmstub.h.

#define vmopen (   x,
  y,
 
)    (Vmalloc_t*)(0)

Definition at line 22 of file vmstub.h.

#define vmresize (   heap,
  ptr,
  size,
  oktomoveflag 
)    realloc((ptr),(size))

Definition at line 24 of file vmstub.h.

Typedef Documentation

typedef void Vmalloc_t

Definition at line 20 of file vmstub.h.

Variable Documentation

EXTERN void* Vmregion

Definition at line 29 of file vmstub.h.