ocaml/otherlibs/unix/execvp.c

32 lines
1.2 KiB
C

/***********************************************************************/
/* */
/* Caml Special Light */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1995 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
/* $Id$ */
#include <mlvalues.h>
#include <memory.h>
#include "unix.h"
extern char ** cstringvect();
value unix_execvp(path, args) /* ML */
value path, args;
{
char ** argv;
argv = cstringvect(args);
(void) execvp(String_val(path), argv);
stat_free((char *) argv);
uerror("execvp", path);
return Val_unit; /* never reached, but suppress warnings */
/* from smart compilers */
}