source: trunk/src/gcc/libjava/include/boehm-gc.h@ 2247

Last change on this file since 2247 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 1.7 KB
Line 
1// -*- c++ -*-
2// boehm-gc.h - Defines for Boehm collector.
3
4/* Copyright (C) 1998, 1999 Free Software Foundation
5
6 This file is part of libgcj.
7
8This software is copyrighted work licensed under the terms of the
9Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
10details. */
11
12#ifndef __JV_BOEHM_GC__
13#define __JV_BOEHM_GC__
14
15#define JV_MARKOBJ_DECL void *_Jv_MarkObj (void *, void *, void *, void *)
16#define JV_MARKARRAY_DECL void *_Jv_MarkArray (void *, void *, void *, void *)
17
18extern "C"
19{
20 JV_MARKOBJ_DECL;
21 JV_MARKARRAY_DECL;