Changeset 4dfcb1 in git


Ignore:
Timestamp:
Aug 20, 2008, 3:35:55 PM (16 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
31fa9f83e4c375260f32fcc2cfcad81117dc57ed
Parents:
958fc4c196033ed13fa3c57d13db44f660cf3fa8
Message:
*hannes: cstdio


git-svn-id: file:///usr/local/Singular/svn/trunk@11012 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
factory
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • factory/NTLconvert.cc

    r958fc4 r4dfcb1  
    1 /* $Id: NTLconvert.cc,v 1.24 2008-06-30 09:31:21 Singular Exp $ */
     1/* $Id: NTLconvert.cc,v 1.25 2008-08-20 13:35:55 Singular Exp $ */
    22#include <config.h>
    33
     
    2323
    2424#ifdef HAVE_NTL
     25#ifdef HAVE_CSTDIO
     26#include <cstdio>
     27#else
    2528#include <stdio.h>
     29#endif
    2630#include <string.h>
    2731#include <NTL/ZZXFactoring.h>
  • factory/algext.cc

    r958fc4 r4dfcb1  
     1#include "factoryconf.h"
     2
     3#ifdef HAVE_CSTDIO
     4#include <cstdio>
     5#else
    16#include <stdio.h>
     7#endif
     8#ifdef HAVE_IOSTREAM_H
    29#include <iostream.h>
    3 #include <config.h>
     10#else
     11#include <iostream>
     12#endif
    413
    514#include "cf_defs.h"
  • factory/bifac.h

    r958fc4 r4dfcb1  
    2121// === IO-Streams ===
    2222#ifndef NOSTREAMIO
     23#ifdef HAVE_CSTDIO
     24#include <cstdio>
     25#else
    2326#include <stdio.h>
     27#endif
    2428#ifdef HAVE_IOSTREAM
    2529#include <fstream>
  • factory/cf_gcd_charp.cc

    r958fc4 r4dfcb1  
    11#include "config.h"
     2#ifdef HAVE_CSTDIO
     3#include <cstdio>
     4#else
    25#include <stdio.h>
     6#endif
    37#ifndef NOSTREAMIO
    48#ifdef HAVE_IOSTREAM
  • factory/config.h.in

    r958fc4 r4dfcb1  
    11/* emacs edit mode for this file is -*- C -*- */
    2 /* $Id: config.h.in,v 1.13 2006-05-15 08:17:50 Singular Exp $ */
     2/* $Id: config.h.in,v 1.14 2008-08-20 13:35:55 Singular Exp $ */
    33
    44#ifndef INCL_CONFIG_H
     
    5959#undef HAVE_STRING
    6060
     61#undef HAVE_CSTDIO
     62
    6163/* define if linked to Singular */
    6264#undef SINGULAR
  • factory/gfops.cc

    r958fc4 r4dfcb1  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: gfops.cc,v 1.6 2007-08-07 14:11:18 Singular Exp $ */
     2/* $Id: gfops.cc,v 1.7 2008-08-20 13:35:55 Singular Exp $ */
    33
    44#include <config.h>
    55
     6#ifdef HAVE_CSTDIO
     7#include <cstdio>
     8#else
    69#include <stdio.h>
     10#endif
    711#include <string.h>
    812
  • factory/timing.h

    r958fc4 r4dfcb1  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: timing.h,v 1.7 1998-06-12 14:29:51 schmidt Exp $ */
     2/* $Id: timing.h,v 1.8 2008-08-20 13:35:55 Singular Exp $ */
    33
    44/* It should be possible to include this file multiple times for different */
     
    1818#include <sys/param.h>
    1919#endif
     20#ifdef HAVE_CSTDIO
     21#include <cstdio>
     22#else
    2023#include <stdio.h>
     24#endif
    2125
    2226// need to be adjusted on your machine:
Note: See TracChangeset for help on using the changeset viewer.