source: git/libpolys/misc/options.c @ 88ece17

spielwiese
Last change on this file since 88ece17 was 88ece17, checked in by Hans Schoenemann <hannes@…>, 13 years ago
kernel: make check works (moved febase stuff to Singular/fevoices.cc, to reporter.cc etc.
  • Property mode set to 100644
File size: 408 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#include <misc/options.h>
4unsigned test = 0;
5unsigned verbose = Sy_bit(V_QUIET)
6                   //| Sy_bit(V_QRING) // not default, as speed drops by 10 %
7                   | Sy_bit(V_REDEFINE)
8                   | Sy_bit(V_LOAD_LIB)
9                   | Sy_bit(V_SHOW_USE)
10                   | Sy_bit(V_PROMPT)
11                   ;
12
Note: See TracBrowser for help on using the repository browser.