]> granicus.if.org Git - graphviz/commitdiff
remove unused vmstub.h
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 31 May 2020 02:30:06 +0000 (19:30 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 31 May 2020 02:41:15 +0000 (19:41 -0700)
lib/agraph/Makefile.am
lib/agraph/vmstub.h [deleted file]

index 076f40be4b0b43b7c2befe7b421f7973a56294e2..c7d1406e703fbb345b36a3ab5d7aa97c871037bb 100644 (file)
@@ -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 (file)
index bb04d28..0000000
+++ /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 <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