blob: 8b2aa6b23ef77246d151f34aa378aec790bc8122 (
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.
# IMERR -- Format an error message for the named image and call error.
# format of error message: ERROR (nnn, "message ('imname')").
procedure imerr (image_name, errcode)
char image_name[ARB]
int errcode
begin
call syserrs (errcode, image_name)
end
|