summaryrefslogtreecommitdiff
path: root/sci-astronomy/stuff/files/stuff-1.26.0-fno-common.patch
blob: bb02fa9e26fd7dd49244b0280515ef49d310cbc1 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
--- a/src/cosmo.c
+++ b/src/cosmo.c
@@ -39,6 +39,11 @@
 #include "cosmo.h"
 #include "lf.h"
 
+char    gstr[MAXCHAR];
+int   bswapflag;
+
+double  H, H0, OmegaM, OmegaL, deltaMH;
+
 /******************************** cosmo_dconf ********************************/
 /*
 Conformal distance. Numerical integration along geodesic, allowing for a
--- a/src/cosmo.h
+++ b/src/cosmo.h
@@ -38,7 +38,7 @@
 
 /*------------------------------ global variables ---------------------------*/
 
-double	H, H0, OmegaM, OmegaL, deltaMH;
+extern double	H, H0, OmegaM, OmegaL, deltaMH;
 
 /*-------------------------------- protos -----------------------------------*/
 
--- a/src/globals.h
+++ b/src/globals.h
@@ -29,8 +29,8 @@
 #include	"types.h"
 
 /*----------------------- miscellaneous variables ---------------------------*/
-char		gstr[MAXCHAR];
-int		bswapflag;
+extern char		gstr[MAXCHAR];
+extern int		bswapflag;
 
 /*------------------------------- functions ---------------------------------*/
 extern	void	error(int, char *, char *),
--- a/src/prefs.c
+++ b/src/prefs.c
@@ -53,6 +53,8 @@
 #include 	"prefs.h"
 #include	"preflist.h"
 
+prefstruct  prefs;
+
 /********************************* dumpprefs ********************************/
 /*
 Print the default preference parameters.
--- a/src/prefs.h
+++ b/src/prefs.h
@@ -136,7 +136,7 @@
   double	time_diff;			/* Execution time */
   }	prefstruct;
 
-prefstruct	prefs;
+extern prefstruct	prefs;
 
 /*----------------------------- Internal constants --------------------------*/