Changeset 83192d in git for Singular/pyobject.cc


Ignore:
Timestamp:
Jun 21, 2013, 6:46:15 PM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
f88e07c79359c9680861c6db7a48478e2119bc60
Parents:
fe2e01ff5d2ee7a642d4a93d187fda61a3204007
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-06-21 18:46:15+02:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-07-09 22:24:33+02:00
Message:
Fixing the including of "config.h"-files before any other headers + include reordering...

fix: also syzextra
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/pyobject.cc

    rfe2e01 r83192d  
    1616#include "config.h"
    1717#endif /* HAVE_CONFIG_H */
     18
    1819#include <kernel/mod2.h>
    19   //#include <misc/auxiliary.h>
    20   //#include "newstruct.h"
    21 
     20
     21//#include <misc/auxiliary.h>
     22//#include "newstruct.h"
     23
     24#include <misc/auxiliary.h>
     25
     26#include <omalloc/omalloc.h>
     27
     28#include <kernel/febase.h>
     29#include <misc/intvec.h>
     30
     31#include <polys/mod_raw.h>
    2232
    2333#include <Singular/ipid.h>
     
    2838#include <Singular/newstruct.h>
    2939
    30 
    31 #include <misc/auxiliary.h>
    32 
    33 #include <omalloc/omalloc.h>
    34 
    35 #include <kernel/febase.h>
    36 #include <misc/intvec.h>
    3740
    3841#include "subexpr.h"
     
    720723     (char*)#name, FALSE, name);
    721724
    722 int pyobject_mod_init(SModulFunctions* psModulFunctions)
     725int SI_MOD_INIT(pyobject)(SModulFunctions* psModulFunctions)
    723726{
    724727  int tok = -1;
     
    751754  int mod_init(SModulFunctions* psModulFunctions)
    752755  {
    753     return pyobject_mod_init(psModulFunctions);
     756    return SI_MOD_INIT(pyobject)(psModulFunctions);
    754757  }
    755758}
Note: See TracChangeset for help on using the changeset viewer.