summaryrefslogtreecommitdiffstats
path: root/stdlib/header.c
blob: 9aba0684ff9a8f7d41d55601b07474c2e798906b (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$ */

char runtime_name [] = RUNTIME_NAME;
char errmsg [] = "Cannot exec ocamlrun.\n";

int main(argc, argv)
     int argc;
     char ** argv;
{
  execv(runtime_name, argv);
  write(2, errmsg, sizeof(errmsg)-1);
  return 2;
}