Changeset b45d97 in git for Singular/longrat0.cc
- Timestamp:
- Apr 17, 1999, 2:30:24 PM (24 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- a79a12873c307b35db5462af26c49d5b594af644
- Parents:
- 458bd67f21def86763df6137584fe9c0d9fa9a66
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/longrat0.cc
r458bd6 rb45d97 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: longrat0.cc,v 1. 6 1998-05-27 17:14:08Singular Exp $ */4 /* $Id: longrat0.cc,v 1.7 1999-04-17 12:30:21 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - … … 117 117 else if (a==NULL) 118 118 { 119 StringAppend ("o");119 StringAppendS("o"); 120 120 } 121 121 #endif … … 133 133 s=(char*)Alloc(l); 134 134 z=mpz_get_str(s,10,&a->z); 135 StringAppend (z);135 StringAppendS(z); 136 136 if (a->s!=3) 137 137 { 138 StringAppend ("/");138 StringAppendS("/"); 139 139 z=mpz_get_str(s,10,&a->n); 140 StringAppend (z);140 StringAppendS(z); 141 141 } 142 142 Free((ADDRESS)s,l);
Note: See TracChangeset
for help on using the changeset viewer.