24 lines
912 B
C
24 lines
912 B
C
/***********************************************************************/
|
|
/* */
|
|
/* Objective Caml */
|
|
/* */
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
/* */
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
|
/* Automatique. Distributed only by permission. */
|
|
/* */
|
|
/***********************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
#ifndef _sys_
|
|
#define _sys_
|
|
|
|
#include "misc.h"
|
|
|
|
void sys_error P((char *));
|
|
void sys_init P((char **));
|
|
void sys_exit P((value)) Noreturn;
|
|
|
|
#endif /* _sys_ */
|