HP 3000 Manuals

COPYRIGHT_DATE [ HP Pascal/iX Reference Manual ] MPE/iX 5.0 Documentation


HP Pascal/iX Reference Manual

COPYRIGHT_DATE 

COPYRIGHT_DATE is an HP Pascal Option.

The COPYRIGHT_DATE compiler option specifies the date that appears in the
copyright notice.

Syntax 

     $COPYRIGHT_DATE date_string$

Parameter 

date_string   Specifies the date string to appear in the copyright
              notice, as follows:

                   (C) Copyright date_string by string_literal.
                   All rights reserved.  No part of this program may be
                   photocopied, reproduced, or transmitted without prior
                   written consent of string_literal.

              (The COPYRIGHT option sets string_literal.)

Default       Current year.

Location      At front.

The COPYRIGHT_DATE compiler option has no effect if the program does not
contain the COPYRIGHT compiler option, which puts the copyright notice
into the relocatable object and program files.

Example 

     $COPYRIGHT 'Blaise Pascal'$
     $COPYRIGHT_DATE '1682,1683,1684,1685,1686'$
     PROGRAM show_copyright;
     BEGIN
     END.

The copyright notice for the preceding program is:

     (C) Copyright 1682,1683,1684,1685,1686 by Blaise Pascal.
     All rights reserved.  No part of this program may be
     photocopied, reproduced, or transmitted without prior
     written consent of Blaise Pascal.



MPE/iX 5.0 Documentation