Hi:
Indeed, if you read this Tech Support Note, you will see the '0C'x is the "old" Carriage Return character:
http://support.sas.com/kb/3/396.html
PROC PRINTTO is an older proc. If it still follows that old convention of a leading page break ... I don't know whether there's a way around that. That's a question for Tech Support.
However, there is ANOTHER way to create a PS file:
[pre]
ods ps file='testclass.ps';
proc print data=sashelp.class;
run;
ods ps close;
[/pre]
Alternately, you could specify:
[pre]
ods printer ps file='testclass2.ps';
proc print data=sashelp.class;
run;
ods printer ps close;
[/pre]
Unless you really want the look of old LISTING window output, you might like the look of this type of Postscript output better.
cynthia