Changeset 41b8d6 in git
- Timestamp:
- Apr 30, 2005, 6:41:20 PM (19 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- 91f1a306ee125a8792d3346850b71a9cb3cadefd
- Parents:
- a0e57c4c27273001724952282207c5041452fb76
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/feread.cc
ra0e57c r41b8d6 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: feread.cc,v 1. 4 2005-04-30 14:41:31Singular Exp $ */4 /* $Id: feread.cc,v 1.5 2005-04-30 16:38:26 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: input from ttys, simulating fgets … … 134 134 extern CPPFunction * rl_attempted_completion_function; 135 135 extern FILE * rl_outstream; 136 extern char * readline ( );137 extern void add_history ( );136 extern char * readline (char *); 137 extern void add_history (char *); 138 138 extern int write_history (); 139 139 extern void using_history(); 140 extern int read_history( );140 extern int read_history(char *); 141 141 extern int history_total_bytes(); 142 142 #endif /* READLINE_READLINE_H_OK */ … … 162 162 int fe_init_dyn_rl(); 163 163 char *(*fe_filename_completion_function)(); /* 3 */ 164 char *(* fe_readline) ( );/* 4 */165 void (*fe_add_history) ( );/* 5 */164 char *(* fe_readline) (char *); /* 4 */ 165 void (*fe_add_history) (char *); /* 5 */ 166 166 char ** fe_rl_readline_name; /* 6 */ 167 167 char **fe_rl_line_buffer; /* 7 */ … … 172 172 int (*fe_history_total_bytes) (); /* 12 */ 173 173 void (*fe_using_history) (); /* 13 */ 174 int (*fe_read_history) ( );/* 14 */174 int (*fe_read_history) (char *); /* 14 */ 175 175 176 176 } -
kernel/kutil.cc
ra0e57c r41b8d6 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1. 8 2005-04-25 18:15:24Singular Exp $ */4 /* $Id: kutil.cc,v 1.9 2005-04-30 16:41:20 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for kStd … … 920 920 /* int zaehler=0; */ 921 921 /* for counting number of pairs in Plural */ 922 #endif PDEBUG922 #endif /*PDEBUG*/ 923 923 924 924 void enterL (LSet *set,int *length, int *LSetmax, LObject p,int at) … … 926 926 #ifdef PDEBUG 927 927 /* zaehler++; */ 928 #endif PDEBUG928 #endif /*PDEBUG*/ 929 929 int i; 930 930 // this should be corrected
Note: See TracChangeset
for help on using the changeset viewer.