Added some 'register' to declarations
This commit is contained in:
parent
981e5b206b
commit
5696478540
1 changed files with 6 additions and 3 deletions
|
@ -8,7 +8,9 @@ _pfloat(r,s,n,b)
|
||||||
double r;
|
double r;
|
||||||
register char *s;
|
register char *s;
|
||||||
{
|
{
|
||||||
int sign,dp,i; char *s1;
|
register char *s1;
|
||||||
|
int sign,dp;
|
||||||
|
register int i;
|
||||||
|
|
||||||
if (b == 0)
|
if (b == 0)
|
||||||
n = 6;
|
n = 6;
|
||||||
|
@ -31,8 +33,9 @@ _pfloat(r,s,n,b)
|
||||||
return(s);
|
return(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
char *_pscien(r,s,n,b) float r; char *s; {
|
char *_pscien(r,s,n,b) float r; register char *s; {
|
||||||
int sign,dp; char *s1;
|
int sign,dp;
|
||||||
|
register char *s1;
|
||||||
|
|
||||||
if (b == 0)
|
if (b == 0)
|
||||||
n = 7;
|
n = 7;
|
||||||
|
|
Loading…
Reference in a new issue