blob: ec9f66ae513791f4d54e97fa75969ee1695cf5fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include "fitsio.h"
procedure fspmsg(text)
# write a 80 character record to the FITSIO error stack
char text[SZ_FCARD] # i 80-char message
% character ftext*80
begin
call f77pak(text,ftext,SZ_FCARD)
call ftpmsg(ftext)
end
|