ocaml/config/auto-aux/sighandler.c

22 lines
861 B
C
Raw Normal View History

/***********************************************************************/
/* */
/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
/* $Id$ */
#include <signal.h>
int main(void)
{
SIGRETURN (*old)();
old = signal(SIGQUIT, SIG_DFL);
return 0;
}