Changeset 9539de6 in git
- Timestamp:
- Aug 18, 2008, 12:39:03 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '23b0a9c07070b684aa12355009488dc00d9501e3')
- Children:
- c778d068b7087bc2b07871c2ca155d64cb79590b
- Parents:
- d09118d38b98116858c048434159f71a3e99bfda
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/febase.cc
rd09118 r9539de6 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: febase.cc,v 1.1 7 2008-08-05 16:56:53 Singular Exp $ */4 /* $Id: febase.cc,v 1.18 2008-08-18 10:39:03 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: i/o system … … 20 20 #ifdef NeXT 21 21 #include <sys/file.h> 22 #endif23 #ifdef ix86_Linux_libc524 #undef stdin25 extern FILE *stdin;26 22 #endif 27 23 … … 1140 1136 } 1141 1137 1138 #if 0 1142 1139 void monitor(char* s, int mode) 1143 1140 { … … 1159 1156 } 1160 1157 } 1158 #else 1159 void monitor(void *F, int mode) 1160 { 1161 if (feProt) 1162 { 1163 fclose(feProtFile); 1164 feProt = 0; 1165 } 1166 if (F!=NULL) 1167 { 1168 feProtFile = (FILE *)F; 1169 feProt = mode; 1170 } 1171 } 1172 #endif 1161 1173 1162 1174 -
kernel/febase.h
rd09118 r9539de6 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: febase.h,v 1.1 0 2008-03-31 12:14:44Singular Exp $ */6 /* $Id: febase.h,v 1.11 2008-08-18 10:39:03 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT: basic i/o … … 232 232 BOOLEAN exitBuffer(feBufferTypes typ); 233 233 BOOLEAN exitVoice(); 234 void monitor( char* s,int mode);234 void monitor(void *F, int mode); /* FILE*, int */ 235 235 BOOLEAN newFile(char* fname, FILE *f=NULL); 236 236 void newBuffer(char* s, feBufferTypes t, procinfo *pname = NULL, int start_lineno = 0);
Note: See TracChangeset
for help on using the changeset viewer.