Changeset 9388d4 in git


Ignore:
Timestamp:
Apr 14, 1998, 5:16:24 PM (25 years ago)
Author:
Wilfred Pohl <pohl@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
b7c8bdcf3068d073e49fa3669429999b074c12d0
Parents:
c1784d08dc358e8ad791bfe5c016955be639da93
Message:
	* ffops.h (ff_bignorm): definition of `ff_bignorm' removed for
	MetroWerks
	(ff_mul): made a declaration for MetroWerks.  Defined in
	`ffops.cc'.


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

Legend:

Unmodified
Added
Removed
  • factory/ffops.h

    rc1784d r9388d4  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: ffops.h,v 1.5 1997-12-08 18:24:38 schmidt Exp $ */
     2/* $Id: ffops.h,v 1.6 1998-04-14 15:16:24 pohl Exp $ */
    33
    44#ifndef INCL_FFOPS_H
     
    4444}
    4545
     46#ifndef __MWERKS__
    4647inline int ff_bignorm ( const INT64 a )
    4748{
     
    5253        return n;
    5354}
     55#endif
    5456
    5557inline int ff_add ( const int a, const int b )
     
    6870}
    6971
     72#ifdef __MWERKS__
     73int ff_mul ( const int a, const int b );
     74#else
    7075inline int ff_mul ( const int a, const int b )
    7176{
     
    7580        return ff_longnorm ( (long)a * (long)b );
    7681}
     82#endif
    7783
    7884inline int ff_inv ( const int a )
Note: See TracChangeset for help on using the changeset viewer.