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