@@ -471,7 +471,7 @@ register context *ctx;
471
471
register pointer f ;
472
472
eusinteger_t val ;
473
473
int subchar ;
474
- { char ch ;
474
+ { Char ch ;
475
475
ch = readch (f ); return (makeint (ch ));}
476
476
477
477
static pointer read_sharp_comment (ctx ,f ,val ,subchar ) /* #| ... |# */
@@ -501,7 +501,7 @@ int subchar;
501
501
{ register int i = 0 ,j ,c ,p ,q ;
502
502
pointer b ;
503
503
eusinteger_t * bv ,x ;
504
- char ch , buf [WORD_SIZE ];
504
+ Char ch , buf [WORD_SIZE ];
505
505
506
506
ch = readch (f );
507
507
while (i < WORD_SIZE && isxdigit (ch )) { buf [i ++ ] = ch ; ch = readch (f );}
@@ -533,7 +533,7 @@ eusinteger_t val;
533
533
int subchar ;
534
534
{ if (read_suppress ) return (read1 (ctx ,f ));
535
535
register int i = 0 ;
536
- char buf [WORD_SIZE /2 ], ch ;
536
+ Char buf [WORD_SIZE /2 ], ch ;
537
537
ch = readch (f ); val = 0 ;
538
538
while (i < WORD_SIZE /2 && ch >='0' && ch < '8' ) { buf [i ++ ] = ch ; ch = readch (f );}
539
539
unreadch (f ,ch ); buf [i ]= 0 ;
@@ -554,7 +554,7 @@ eusinteger_t val;
554
554
int subchar ;
555
555
char token [];
556
556
{ register int i = 0 ;
557
- char ch ;
557
+ Char ch ;
558
558
ch = readch (f );
559
559
while (syntaxtype (ch )== ch_constituent ) {
560
560
token [i ++ ]= to_upper (ch ); ch = readch (f );}
@@ -736,10 +736,10 @@ char token[];
736
736
/* news does not have strtol routine! */
737
737
#if news || sanyo
738
738
int strtol (str ,ptr ,base )
739
- register char * str ,* * ptr ;
739
+ register Char * str ,* * ptr ;
740
740
register int base ;
741
741
{ long val = 0 ,sign = 1 ;
742
- char ch ;
742
+ Char ch ;
743
743
while (isspace (* str )) str ++ ;
744
744
ch = * str ;
745
745
if (ch == '+' ) str ++ ; else if (ch == '-' ) { str ++ ; sign = -1 ;}
0 commit comments