Changeset 08c2d6 in git for Singular/iplib.cc
- Timestamp:
- Jun 21, 2009, 4:10:58 PM (14 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- d5042e24b7e01b5dc02ef718e5a3e8ec3f3187e1
- Parents:
- 03057341d897afb7daf5d8d5346c88a961df4184
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iplib.cc
r030573 r08c2d6 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: iplib.cc,v 1.12 8 2009-06-04 09:58:49Singular Exp $ */4 /* $Id: iplib.cc,v 1.129 2009-06-21 14:10:18 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: interpreter: LIB and help … … 263 263 strcat( pi->data.s.body+procbuflen, "\n;return();\n\n" ); 264 264 strcat( pi->data.s.body+procbuflen+13,pi->libname); 265 s= strchr(pi->data.s.body,'{');265 s=(char *)strchr(pi->data.s.body,'{'); 266 266 if (s!=NULL) *s=' '; 267 267 return NULL; … … 281 281 s[procbuflen] = '\0'; 282 282 strcat(s+procbuflen-3, "\n;return();\n\n" ); 283 p= strchr(s,'{');283 p=(char *)strchr(s,'{'); 284 284 if (p!=NULL) *p=' '; 285 285 return(s); … … 1193 1193 if(p==NULL) p = tmpname; 1194 1194 else p++; 1195 r = strchr(p, '.');1195 r = (char *)strchr(p, '.'); 1196 1196 if( r!= NULL) *r = '\0'; 1197 1197 r = omStrDup(p);
Note: See TracChangeset
for help on using the changeset viewer.