[GRASS-SVN] r46212 - grass-addons/raster/r.fuzzy.system

svn_grass at osgeo.org svn_grass at osgeo.org
Mon May 9 07:56:06 EDT 2011


Author: neteler
Date: 2011-05-09 04:56:05 -0700 (Mon, 09 May 2011)
New Revision: 46212

Modified:
   grass-addons/raster/r.fuzzy.system/local_proto.h
Log:
compilation fix

Modified: grass-addons/raster/r.fuzzy.system/local_proto.h
===================================================================
--- grass-addons/raster/r.fuzzy.system/local_proto.h	2011-05-09 11:52:29 UTC (rev 46211)
+++ grass-addons/raster/r.fuzzy.system/local_proto.h	2011-05-09 11:56:05 UTC (rev 46212)
@@ -143,23 +143,24 @@
 } OUTPUTS;
 
 
-STRING var_name_file;
-STRING rule_name_file;
-STRING output;
-MAPS *s_maps;
-RULES *s_rules;
-OUTPUTS *m_outputs;
-float **visual_output;
-float *universe;
-float *antecedents;
-float *agregate;
-int nmaps, nrules, output_index, multiple, membership_only, coor_proc;
-int resolution;
-implications implication;
-defuzz defuzzyfication;
-logics family;
+GLOBAL STRING var_name_file;
+GLOBAL STRING rule_name_file;
+GLOBAL STRING output;
+GLOBAL MAPS *s_maps;
+GLOBAL RULES *s_rules;
+GLOBAL OUTPUTS *m_outputs;
+GLOBAL float **visual_output;
+GLOBAL float *universe;
+GLOBAL float *antecedents;
+GLOBAL float *agregate;
+GLOBAL int nmaps, nrules, output_index, multiple, membership_only, coor_proc;
+GLOBAL int resolution;
+GLOBAL implications implication;
+GLOBAL defuzz defuzzyfication;
+GLOBAL logics family;
 
-char **rules;
+GLOBAL char **rules;
+GLOBAL int HERE;
 
 int char_strip(char *buf, char rem);
 int char_copy(const char *buf, char *res, int start, int stop);
@@ -175,7 +176,6 @@
 int get_rows(int row);
 int get_cells(int col);
 
-int HERE;
 int parse_sets(SETS * set, char buf[], const char mapname[]);
 int parse_rules(int rule_num, int n, char buf[]);
 void process_coors(char *answer);



More information about the grass-commit mailing list