From: Matthew Fernandez Date: Sun, 31 May 2020 02:30:06 +0000 (-0700) Subject: remove unused vmstub.h X-Git-Tag: 2.44.1~49^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed3f0ffa13a1a36855cf268388937beaa2f0886a;p=graphviz remove unused vmstub.h --- diff --git a/lib/agraph/Makefile.am b/lib/agraph/Makefile.am index 076f40be4..c7d1406e7 100644 --- a/lib/agraph/Makefile.am +++ b/lib/agraph/Makefile.am @@ -11,7 +11,7 @@ AM_CPPFLAGS = \ -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 diff --git a/lib/agraph/vmstub.h b/lib/agraph/vmstub.h deleted file mode 100644 index bb04d28df..000000000 --- a/lib/agraph/vmstub.h +++ /dev/null @@ -1,38 +0,0 @@ -/* $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 -#ifdef HAVE_MALLOC_H -#include -#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