2 * Write all lines beginning with EXPORTS to the outfile.
3 * This is used for AIX 3.x and AIX 4.1
6 Parse Arg infile outfile
.
7 Call Stream outfile
, 'C', 'OPEN WRITE REPLACE'
8 Do While( Lines( infile
) > 0 )
9 Parse Value Linein( infile
) With . 'EXPORTS' func
12 If os
= 'WIN32' Then Call Lineout outfile
, 'EXPORTS' Strip( func
)
13 Else Call Lineout outfile
, Strip( func
)