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