Renaming due to 8 character C compiler limit.
This commit is contained in:
parent
aef211ad4e
commit
8d02182e12
|
@ -18,7 +18,7 @@ int _chann = -1;
|
|||
FILE *_chanrd = stdin;
|
||||
FILE *_chanwr = stdout;
|
||||
|
||||
_setchannel(index)
|
||||
_setchan(index)
|
||||
int index;
|
||||
{
|
||||
#ifdef DEBUG
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
/* $Header $ */
|
||||
|
||||
_randomize()
|
||||
_randomi()
|
||||
{
|
||||
int i;
|
||||
double f;
|
||||
_setchannel(-1);
|
||||
_setchan(-1);
|
||||
printf("Random number seed (-32768 to 32767) ? ");
|
||||
_readint(&i);
|
||||
f=i;
|
||||
_setrandom(f);
|
||||
_setrand(f);
|
||||
}
|
||||
|
||||
_setrandom(f)
|
||||
_setrand(f)
|
||||
double f;
|
||||
{
|
||||
int i;
|
||||
|
|
|
@ -126,7 +126,7 @@ String **s;
|
|||
*s= (String *) _newstr(buffer);
|
||||
}
|
||||
|
||||
extern int _seektable[];
|
||||
extern int _seektab[];
|
||||
|
||||
_restore(line)
|
||||
int line;
|
||||
|
@ -141,9 +141,9 @@ int line;
|
|||
if( line)
|
||||
{
|
||||
/* search number of lines to skip */
|
||||
for(nr=0; _seektable[nr] && _seektable[nr]< line; nr+=2)
|
||||
for(nr=0; _seektab[nr] && _seektab[nr]< line; nr+=2)
|
||||
#ifdef DEBUG
|
||||
printf("test %d %d\n",_seektable[nr], _seektable[nr+1]);
|
||||
printf("test %d %d\n",_seektab[nr], _seektab[nr+1]);
|
||||
#endif
|
||||
;
|
||||
nr /= 2;
|
||||
|
|
|
@ -66,7 +66,7 @@ String *s1,*s2;
|
|||
strcat(s->strval,s1->strval);
|
||||
return(s);
|
||||
}
|
||||
_strcompare(s1,s2)
|
||||
_strcomp(s1,s2)
|
||||
String *s1,*s2;
|
||||
{
|
||||
okr(s1);okr(s2);
|
||||
|
|
Loading…
Reference in a new issue