Changeset c778d06 in git


Ignore:
Timestamp:
Aug 18, 2008, 12:39:57 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
Children:
bdefc5f702885ed73606dd76ac71562a275bdbdf
Parents:
9539de640ccfecf479ba6edae20d859c36821801
Message:
*hannes: code cleanup


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

Legend:

Unmodified
Added
Removed
  • kernel/structs.h

    r9539de6 rc778d06  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: structs.h,v 1.53 2008-07-25 10:44:16 Singular Exp $ */
     6/* $Id: structs.h,v 1.54 2008-08-18 10:39:57 Singular Exp $ */
    77/*
    88* ABSTRACT
     
    773773inline int si_max(const int a, const int b)  { return (a>b) ? a : b; }
    774774inline int si_min(const int a, const int b)  { return (a<b) ? a : b; }
    775 #if defined(DecAlpha_Linux) || defined(IA64_Linux)
    776775inline long si_max(const long a, const long b)  { return (a>b) ? a : b; }
    777776inline long si_min(const long a, const long b)  { return (a<b) ? a : b; }
    778 #endif
    779777#else
    780778#define si_max(A,B) ((A) > (B) ? (A) : (B))
Note: See TracChangeset for help on using the changeset viewer.