blob: e0662d90701fd68f96cabc1472ea2dc7db4c0c85 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <printf.h>
# PRINTF -- Format output to the standard output.
procedure printf (format_string)
char format_string[ARB]
begin
call fprntf (STDOUT, format_string, REGULAR_FILE)
end
|