summaryrefslogtreecommitdiffstats
path: root/byterun/sys.h
blob: 859422c2c1a99ceac5afb076d8ff10772db435f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/***********************************************************************/
/*                                                                     */
/*                           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;
char * searchpath P((char * name));

#endif /* _sys_ */