diff options
Diffstat (limited to 'otherlibs/unix/pause.c')
-rw-r--r-- | otherlibs/unix/pause.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/otherlibs/unix/pause.c b/otherlibs/unix/pause.c deleted file mode 100644 index 275853038..000000000 --- a/otherlibs/unix/pause.c +++ /dev/null @@ -1,21 +0,0 @@ -/***********************************************************************/ -/* */ -/* Objective Caml */ -/* */ -/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ -/* */ -/* Copyright 1996 Institut National de Recherche en Informatique et */ -/* Automatique. Distributed only by permission. */ -/* */ -/***********************************************************************/ - -/* $Id$ */ - -#include <mlvalues.h> -#include "unixsupport.h" - -value unix_pause(void) /* ML */ -{ - pause(); - return Val_unit; -} |