]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MINICERN/packlib/kernlib/kerngen/ccgencf/cfclos.c
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / ccgencf / cfclos.c
CommitLineData
fe4da5cc 1/*
2 * $Id$
3 *
4 * $Log$
5 * Revision 1.2 1997/02/04 17:35:10 mclareni
6 * Merge Winnt and 97a versions
7 *
8 * Revision 1.1.1.1.2.1 1997/01/21 11:30:09 mclareni
9 * All mods for Winnt 96a on winnt branch
10 *
11 * Revision 1.1.1.1 1996/02/15 17:49:35 mclareni
12 * Kernlib
13 *
14 */
15#include "kerngen/pilot.h"
16#include "kerngen/fortranc.h"
17
18/*> ROUTINE CFCLOS
19 CERN PROGLIB# Z310 CFCLOS .VERSION KERNFOR 4.29 910718
20 ORIG. 12/01/91, JZ
21 CALL CFCLOS (LUNDES,MEDIUM)
22 close the file :
23 LUNDES file descriptor
24 MEDIUM = 0,1,2,3 : primary disk/tape, secondary disk/tape
25*/
26#include "kerngen/cf_clos.h"
27#include "kerngen/cf_xaft.h"
28
29#if defined(CERNLIB_QX_SC)
30void type_of_call cfclos_(lundes, medium)
31#endif
32#if defined(CERNLIB_QXNO_SC)
33void type_of_call cfclos(lundes, medium)
34#endif
35#if defined(CERNLIB_QXCAPT)
36void type_of_call CFCLOS(lundes, medium)
37#endif
38 int *lundes, *medium;
39{
40 int fildes;
41
42 fildes = *lundes;
43 close (fildes);
44 return;
45}
46/*> END <----------------------------------------------------------*/
47#ifdef CERNLIB_TCGEN_CFCLOS
48#undef CERNLIB_TCGEN_CFCLOS
49#endif