1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
/* Interface with C primitives. */
|
|
|
|
|
|
|
|
#ifndef _prims_
|
|
|
|
#define _prims_
|
|
|
|
|
|
|
|
typedef value (*c_primitive)();
|
|
|
|
|
|
|
|
extern c_primitive cprim[];
|
|
|
|
extern char * names_of_cprim[];
|
|
|
|
|
|
|
|
#endif /* _prims_ */
|