source: git/libpolys/misc/options.c @ f7e671

fieker-DuValspielwiese
Last change on this file since f7e671 was a3f0fea, checked in by Reimer Behrends <behrends@…>, 5 years ago
Modify variable declarions for pSingular.
  • Property mode set to 100644
File size: 605 bytes
Line 
1// the following initialization is needed for linkage on Mac OS X,
2// since initialized variables will be "D" (uninit. go to "C") segments
3// also, initialization must not be 0, as that goes to "B" (ubuntu)
4#include "misc/options.h"
5VAR unsigned si_opt_1 = Sy_bit(OPT_FASTHC);
6VAR unsigned si_opt_2 = Sy_bit(V_QUIET)
7                   //| Sy_bit(V_QRING) // not default, as speed drops by 10 %
8                   | Sy_bit(V_REDEFINE)
9                   | Sy_bit(V_LOAD_LIB)
10                   | Sy_bit(V_SHOW_USE)
11                   | Sy_bit(V_PROMPT)
12                   ;
13
14VAR BOOLEAN siCntrlc = FALSE;
Note: See TracBrowser for help on using the repository browser.