]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MINICERN/packlib/kernlib/kerngen/ccgen/dosgs/sleepf.c
Merging the VirtualMC branch to the main development branch (HEAD)
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / ccgen / dosgs / sleepf.c
diff --git a/MINICERN/packlib/kernlib/kerngen/ccgen/dosgs/sleepf.c b/MINICERN/packlib/kernlib/kerngen/ccgen/dosgs/sleepf.c
deleted file mode 100644 (file)
index f730039..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * $Id$
- *
- * $Log$
- * Revision 1.1.1.1  1996/02/15 17:49:31  mclareni
- * Kernlib
- *
- */
-/*>    ROUTINE SLEEPF (NSECS)
-  CERN PROGLIB# Z265    SLEEPF          .VERSION KERNFOR  4.26  910313
-  ORIG. 22/02/91, JZ
-  Fortran interface routine to sleep
-*/
-#ifdef WIN32
-#include <windows.h>
-#endif
-#if defined(CERNLIB_QX_SC)
-void sleepf_(seconds)
-#endif
-#if defined(CERNLIB_QXNO_SC)
-void sleepf(seconds)
-#endif
-#if defined(CERNLIB_QXCAPT)
-void SLEEPF(seconds)
-#endif
-      int  *seconds;
-{
-      void sleep();
-      int  secu;
-
-      secu = *seconds;
-#ifdef WIN32
-      Sleep(secu*1000));
-#else
-      sleep(secu);
-#endif
-      return;
-}
-/*> END <----------------------------------------------------------*/