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