Changeset c778d06 in git
- Timestamp:
- Aug 18, 2008, 12:39:57 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- bdefc5f702885ed73606dd76ac71562a275bdbdf
- Parents:
- 9539de640ccfecf479ba6edae20d859c36821801
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/structs.h
r9539de6 rc778d06 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: structs.h,v 1.5 3 2008-07-25 10:44:16Singular Exp $ */6 /* $Id: structs.h,v 1.54 2008-08-18 10:39:57 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT … … 773 773 inline int si_max(const int a, const int b) { return (a>b) ? a : b; } 774 774 inline int si_min(const int a, const int b) { return (a<b) ? a : b; } 775 #if defined(DecAlpha_Linux) || defined(IA64_Linux)776 775 inline long si_max(const long a, const long b) { return (a>b) ? a : b; } 777 776 inline long si_min(const long a, const long b) { return (a<b) ? a : b; } 778 #endif779 777 #else 780 778 #define si_max(A,B) ((A) > (B) ? (A) : (B))
Note: See TracChangeset
for help on using the changeset viewer.