Subversion Repositories wimsdev

Rev

Rev 14873 | Rev 17574 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14873 Rev 15297
Line 60... Line 60...
60
extern int width, width2;
60
extern int width, width2;
61
extern double tend, tstart, tstep, plotjump, animstep;
61
extern double tend, tstart, tstep, plotjump, animstep;
62
extern int vimg_enable, vimg_ready;
62
extern int vimg_enable, vimg_ready;
63
extern FILE *vimgf;
63
extern FILE *vimgf;
64
extern char vimgfilename[1024], imagefilename[1024];
64
extern char vimgfilename[1024], imagefilename[1024];
65
/**
-
 
66
 * GK 2020-04-18
-
 
67
 * defining global variables in a header file is no longer allowed
-
 
68
 * with gcc-10, so thses are commented out, and replaced further by
-
 
69
 * extern clauses.
-
 
70
int tranged;
-
 
71
double parallogram_fonda[6];
-
 
72
char *substit(char *p);
-
 
73
 * the actual variable "tranged" is defined in flydraw.c, line 32
-
 
74
 * the actual value of "parallogram_fonda" is defined in flydraw.c, line 63
-
 
75
 * the actual variable "substit" is defined in flydraw.c, line 83
-
 
76
 **/
-
 
77
extern int tranged;
65
extern int tranged;
78
extern double parallogram_fonda[6];
66
extern double parallogram_fonda[6];
79
extern char *substit(char *p);
67
extern char *substit(char *p);
80
 
68
 
81
void output(void);
69
void output(void);