1997-05-13 07:45:38 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Damien Doligez, projet Para, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../LICENSE. */
|
1997-05-13 07:45:38 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2003-12-15 10:10:51 -08:00
|
|
|
#ifndef CAML_COMPACT_H
|
|
|
|
#define CAML_COMPACT_H
|
1997-05-13 07:45:38 -07:00
|
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "misc.h"
|
|
|
|
|
2003-12-31 06:20:40 -08:00
|
|
|
extern void caml_compact_heap (void);
|
|
|
|
extern void caml_compact_heap_maybe (void);
|
1997-05-13 07:45:38 -07:00
|
|
|
|
|
|
|
|
2003-12-15 10:10:51 -08:00
|
|
|
#endif /* CAML_COMPACT_H */
|