Changeset d0cd21 in git
- Timestamp:
- Feb 7, 2019, 3:21:55 PM (4 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- b3e931b4c9148576d127f3b957900899fa358767
- Parents:
- 098784114c00a08a4d18cf392c0f2411aa0d007e
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/dyn_modules/cohomo/cohomo.cc
r098784 rd0cd21 5331 5331 { 5332 5332 firstorderdef_setup(p); 5333 VARreturn MAX_TOK;5333 return MAX_TOK; 5334 5334 } 5335 5335 -
Singular/dyn_modules/interval/interval.cc
r098784 rd0cd21 1253 1253 evalPolyAtBox); 1254 1254 1255 VARreturn MAX_TOK;1255 return MAX_TOK; 1256 1256 } 1257 1257 // vim: spell spelllang=en -
Singular/misc_ip.cc
r098784 rd0cd21 1092 1092 * few lines of m2_end() should not matter. 1093 1093 */ 1094 VARvolatile BOOLEAN m2_end_called = FALSE;1094 volatile BOOLEAN m2_end_called = FALSE; 1095 1095 1096 1096 void m2_end(int i) -
factory/Makefile.am
r098784 rd0cd21 240 240 bin/folding.el bin/fold-docu.el \ 241 241 bin/makeheader bin/gen-readcf readcf.yy \ 242 make_factory_dist 242 make_factory_dist \ 243 threadsupport.cc 243 244 244 245 ################################################## -
libpolys/misc/options.h
r098784 rd0cd21 13 13 extern "C" VAR unsigned si_opt_1; //< NOTE: Original option variable name: test 14 14 extern "C" VAR unsigned si_opt_2; //< NOTE: Original option variable name: verbose 15 extern "C" BOOLEAN siCntrlc;16 15 #else 17 16 EXTERN_VAR unsigned si_opt_1; 18 17 EXTERN_VAR unsigned si_opt_2; 18 #endif 19 19 EXTERN_VAR BOOLEAN siCntrlc; 20 #endif21 20 #define SI_SAVE_OPT(A,B) { A=si_opt_1; B=si_opt_2; } 22 21 #define SI_SAVE_OPT1(A) { A=si_opt_1; }
Note: See TracChangeset
for help on using the changeset viewer.