1997-02-24 11:24:39 -08:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
1997-02-25 06:39:02 -08:00
|
|
|
/* Damien Doligez, projet Para, INRIA Rocquencourt */
|
1997-02-24 11:24:39 -08:00
|
|
|
/* */
|
1997-02-25 06:39:02 -08:00
|
|
|
/* Copyright 1997 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-02-24 11:24:39 -08:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/* Operations on weak arrays */
|
|
|
|
|
2003-12-15 10:10:51 -08:00
|
|
|
#ifndef CAML_WEAK_H
|
|
|
|
#define CAML_WEAK_H
|
|
|
|
|
1997-02-24 11:24:39 -08:00
|
|
|
#include "mlvalues.h"
|
|
|
|
|
2004-01-01 08:42:43 -08:00
|
|
|
extern value caml_weak_list_head;
|
|
|
|
extern value caml_weak_none;
|
2003-12-15 10:10:51 -08:00
|
|
|
|
|
|
|
#endif /* CAML_WEAK_H */
|