- Fix to AMOR s2t, wrong reading corrected
- Some problems at TASP with polarisation resolved
This commit is contained in:
32
s_rnge.c
Normal file
32
s_rnge.c
Normal file
@ -0,0 +1,32 @@
|
||||
#include "stdio.h"
|
||||
#include "f2c.h"
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* called when a subscript is out of range */
|
||||
|
||||
#ifdef KR_headers
|
||||
extern VOID sig_die();
|
||||
integer s_rnge(varn, offset, procn, line) char *varn, *procn; ftnint offset, line;
|
||||
#else
|
||||
extern VOID sig_die(char*,int);
|
||||
integer s_rnge(char *varn, ftnint offset, char *procn, ftnint line)
|
||||
#endif
|
||||
{
|
||||
register int i;
|
||||
|
||||
fprintf(stderr, "Subscript out of range on file line %ld, procedure ",
|
||||
(long)line);
|
||||
while((i = *procn) && i != '_' && i != ' ')
|
||||
putc(*procn++, stderr);
|
||||
fprintf(stderr, ".\nAttempt to access the %ld-th element of variable ",
|
||||
(long)offset+1);
|
||||
while((i = *varn) && i != ' ')
|
||||
putc(*varn++, stderr);
|
||||
sig_die(".", 1);
|
||||
return 0; /* not reached */
|
||||
}
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user