Changeset 50cbdc in git for Singular/febase.h


Ignore:
Timestamp:
Aug 27, 2001, 4:48:02 PM (23 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '6e5adcba05493683b94648c659a729c189812c77')
Children:
2567b5a6cb7109be5a83e53eb94abb1c38fb9945
Parents:
3de58c9ca0aeaafdf5cb29f986967bffa405b542
Message:
*hannes: merge-2-0-2


git-svn-id: file:///usr/local/Singular/svn/trunk@5619 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/febase.h

    r3de58c r50cbdc  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: febase.h,v 1.51 2001-04-05 15:41:12 Singular Exp $ */
     6/* $Id: febase.h,v 1.52 2001-08-27 14:46:58 Singular Exp $ */
    77/*
    88* ABSTRACT: basic i/o
     
    3030#endif
    3131
     32/* the are versions of limits.h with incorrect values (IRIX_6)
     33* let's include our own */
     34
    3235#include <mylimits.h>
     36
     37/* OSF/1 and AIX_4 are missing the header for setenv, but the proc exists */
     38#if defined(__alpha) || defined(AIX_4)
     39#ifdef __cplusplus
     40extern "C"
     41{
     42#endif
     43  int setenv(const char *name, const char *value, int overwrite);
     44#ifdef __cplusplus
     45}
     46#endif
     47#endif
    3348
    3449#ifndef MAXPATHLEN
     
    4055  #define HAVE_FEREAD 1
    4156#elif ! defined(HAVE_READLINE)
     57#ifndef ix86_Win
    4258  #define HAVE_FEREAD 1
     59#endif
    4360#endif
    4461
     
    94111void    Werror(char *fmt, ...);
    95112void    WerrorS(const char *s);
     113void    WarnS(const char *s);
    96114void    Print(char* fmt, ...);
    97115void    PrintLn();
     
    205223const  char * VoiceName();
    206224void    VoiceBackTrack();
    207 void    WarnS(const char *s);
    208225void    Warn(const char *fmt, ...);
    209226BOOLEAN contBuffer(feBufferTypes typ);
Note: See TracChangeset for help on using the changeset viewer.