34 lines
1.1 KiB
Plaintext
Executable File
34 lines
1.1 KiB
Plaintext
Executable File
SUBROUTINE U2193(ANS,STATUS,DATA,TYPE)
|
|
*******************************************************************************
|
|
*
|
|
* 2193 - Cause page break after this line is printed, or
|
|
* after this attribute is printed with vertical format
|
|
*
|
|
* Module %M% Version %I% Date %H%
|
|
*
|
|
* (c) Copyright 1998 Ardent Software Inc. - All Rights Reserved
|
|
* This is unpublished proprietary source code of Ardent Software Inc.
|
|
* The copyright notice above does not evidence any actual or intended
|
|
* publication of such source code.
|
|
*
|
|
*******************************************************************************
|
|
*
|
|
* Maintenence log - insert most recent change descriptions at top
|
|
*
|
|
* Date.... GTAR# WHO Description.........................................
|
|
* 10/14/98 23801 SAP Change copyrights.
|
|
* 03/21/89 5305 JSM Initial implementation
|
|
*
|
|
*******************************************************************************
|
|
$OPTIONS DEFAULT
|
|
|
|
ANS = ''
|
|
STATUS = 0
|
|
IF DATA # '' THEN
|
|
ASSIGN 1 TO SYSTEM(1000)
|
|
END
|
|
ANS = DATA
|
|
STATUS = 0
|
|
RETURN
|
|
END
|