1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
--- src/globals.h.orig 2006-07-14 14:28:10 UTC
+++ src/globals.h
@@ -18,13 +18,13 @@
/*----------------------- miscellaneous variables ---------------------------*/
-sexcatstruct thecat;
-picstruct thefield1,thefield2, thewfield1,thewfield2;
-objstruct flagobj;
-obj2struct flagobj2;
+EXTERN sexcatstruct thecat;
+EXTERN picstruct thefield1,thefield2, thewfield1,thewfield2;
+EXTERN objstruct flagobj;
+EXTERN obj2struct flagobj2;
extern obj2struct outobj2;
-float ctg[37], stg[37];
-char gstr[MAXCHAR];
+EXTERN float ctg[37], stg[37];
+EXTERN char gstr[MAXCHAR];
/*------------------------------- functions ---------------------------------*/
extern void allocparcelout(void),
@@ -81,6 +81,6 @@ extern void *loadstrip(picstruct *, picstruct *);
extern char *readfitshead(FILE *, char *, int *);
-extern picstruct *inheritfield(picstruct *infield, int flags),
+extern picstruct *inheritfield(picstruct *infield, int flags),
*newfield(char *, int , int);
|