-I$(top_srcdir)/lib/cdt
pkginclude_HEADERS = agraph.h
-noinst_HEADERS = aghdr.h malloc.h vmstub.h grammar.h
+noinst_HEADERS = aghdr.h malloc.h grammar.h
noinst_LTLIBRARIES = libagraph_C.la
lib_LTLIBRARIES = libagraph.la
pkgconfig_DATA = libagraph.pc
+++ /dev/null
-/* $Id$ $Revision$ */
-/* vim:set shiftwidth=4 ts=8: */
-
-/*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: See CVS logs. Details at http://www.graphviz.org/
- *************************************************************************/
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifndef _VMSTUB_H
-#define _VMSTUB_H
-#include <stdlib.h>
-#ifdef HAVE_MALLOC_H
-#include <malloc.h>
-#endif
- typedef void Vmalloc_t;
-#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)
-#ifndef EXTERN
-#define EXTERN extern
-#endif
- EXTERN void *Vmregion;
-#endif
-
-#ifdef __cplusplus
-}
-#endif