HP Pascal/iX Reference Manual (31502-90022)

12- 22
converts MPE/iX-format file names to lowercase letters.
For example, assume the HP-UX directory structure account/group, where
group is a directory containing the file f. If a Pascal source program
contains the statement
$INCLUDE 'F.Group.Account'$
[REV BEG]
then the compiler prefixes[REV END] the appropriate path information to
f, and searches for the resulting name (for example, if the compilation
is performed in the group-level directory, then the compiler includes the
file ../../account/group/f).
COPYRIGHT
COPYRIGHT is an HP Pascal Option.
The COPYRIGHT compiler option puts a copyright notice in the relocatable
object file and the program file.
Syntax
$COPYRIGHT
string_literal
$
Parameter
string_literal
The name of the copyright owner, to appear in the copyright
notice. The compiler distinguishes between uppercase and
lowercase letters.
Default None.
Location At front.
The copyright notice is:
(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 default
date_string
is the current year (see the COPYRIGHT_DATE
compiler option).
Example
$COPYRIGHT 'Blaise Pascal'$
PROGRAM show_copyright;
BEGIN
:
END.
The preceding program produces the following copyright notice:
(C) Copyright 1986 by Blaise Pascal. All rights reserved.
No part of this program may be photocopied, reproduced, or
transmitted without prior written consent of Blaise Pascal.
COPYRIGHT_DATE
COPYRIGHT_DATE is an HP Pascal Option.
The COPYRIGHT_DATE compiler option specifies the date that appears in the
copyright notice.
Syntax