Changeset c11134 in git


Ignore:
Timestamp:
Apr 21, 2011, 11:59:58 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
d14226038a1526c4695721b9d7fbe1bb78181b9c
Parents:
2dcf4535ea01a4f8b35b220685c7a0dc0f68f174
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-04-21 23:59:58+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:27+01:00
Message:
FIX: fixed linkage under Mac OS X: one has to initialize global variables
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/misc/options.c

    r2dcf453 rc11134  
    1 unsigned test;
    2 unsigned verbose;
     1// the following initialization is needed for linkage on Mac OS X,
     2// since initialized variables will be "D" (uninit. go to "C") segments
     3unsigned test = 0;
     4unsigned verbose = 0;
    35
Note: See TracChangeset for help on using the changeset viewer.