.PROC,REPPROC*I,
G "- Group file containg procedures"   = (*F),
L "- Library file receiving procedures"= (*N=#FILE,*F),
UN "- Permanent file ID"               = (*N=,*F),
.
.HELP
 The REPPROC procedure REPlaces PROCedures on a library file.
 On NOS systems, it requires CATALOG binaries with GENCAT entry point.

 Parameter   Default   Description
   Name       Value

   g                   file containing procedures to replace
  [l]                  library file for procedure replacement
  [un]                 permanent file ID (NOS/BE systems only)
.HELP,G
 The G parameter names a file from which procedures are replaced.
.HELP,L
 The L parameter names the file to which procedures are replaced.
 The default value is the file containing this procedure.
.HELP,UN
 The UN parameter specifies a permanent file ID on NOS/BE systems.
 This parameter is ignored on NOS.
.ENDHELP
.IFE,SYS=NOS,NOSSYS.
$REVERT,EX.REPLIB,#G=G,#L=L,T=PROC.
.ELSE,NOSSYS.
 REVERT,EX.REPLIB,#G=G,#L=L,T=PROC,#UN=UN.
.ENDIF,NOSSYS.
/EOR
