]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MINICERN/packlib/kernlib/kerngen/tcgens/vfill.F
This commit was generated by cvs2svn to compensate for changes in r2,
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / tcgens / vfill.F
1 *
2 * $Id$
3 *
4 * $Log$
5 * Revision 1.1.1.1  1996/02/15 17:50:17  mclareni
6 * Kernlib
7 *
8 *
9 #include "kerngen/pilot.h"
10       SUBROUTINE VFILL (A,N,STUFF)
11 C
12 C CERN PROGLIB# F121    VFILL           .VERSION KERNFOR  4.40  940929
13 C ORIG. 01/07/71
14 C
15 #if defined(CERNLIB_QINTCOPY)
16       INTEGER   A(*), STUFF
17 #endif
18 #if !defined(CERNLIB_QINTCOPY)
19       DIMENSION A(*)
20 #endif
21 C
22       IF (N.LE.0)  RETURN
23       DO 9 I= 1,N
24     9 A(I)= STUFF
25 C
26       RETURN
27       END