]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MINICERN/packlib/kernlib/kerngen/ccgenci/ciclos.c
This commit was generated by cvs2svn to compensate for changes in r2,
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / ccgenci / ciclos.c
CommitLineData
fe4da5cc 1/*
2 * $Id$
3 *
4 * $Log$
5 * Revision 1.2 1997/02/04 17:35:16 mclareni
6 * Merge Winnt and 97a versions
7 *
8 * Revision 1.1.1.1.2.1 1997/01/21 11:30:15 mclareni
9 * All mods for Winnt 96a on winnt branch
10 *
11 * Revision 1.1.1.1 1996/02/15 17:49:37 mclareni
12 * Kernlib
13 *
14 */
15#include "kerngen/pilot.h"
16#include "kerngen/fortranc.h"
17
18/*> ROUTINE CICLOS
19 CERN PROGLIB# Z311 CICLOS .VERSION KERNFOR 4.31 911111
20 ORIG. 12/10/91, JZ
21 CALL CICLOS (LUNDES)
22 close the file :
23 LUNDES file descriptor
24*/
25#include "kerngen/cf_clos.h"
26#include "kerngen/cf_xaft.h"
27
28#if defined(CERNLIB_QX_SC)
29void type_of_call ciclos_(lundes)
30#endif
31#if defined(CERNLIB_QXNO_SC)
32void type_of_call ciclos(lundes)
33#endif
34#if defined(CERNLIB_QXCAPT)
35void type_of_call CICLOS(lundes)
36#endif
37 int *lundes;
38{
39 int fildes;
40
41 fildes = *lundes;
42 close (fildes);
43 return;
44}
45/*> END <----------------------------------------------------------*/