/strtopx/ s/result/&result/

This is the version I *meant* to commit last week.
This commit is contained in:
David Schultz 2003-04-09 05:58:43 +00:00
parent ebf5d9bc2c
commit fad677445e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113278
2 changed files with 2 additions and 2 deletions

View File

@ -40,6 +40,6 @@ strtold(const char * __restrict s, char ** __restrict sp)
{
long double result;
strtopQ(s, sp, result);
strtopQ(s, sp, &result);
return result;
}

View File

@ -40,6 +40,6 @@ strtold(const char * __restrict s, char ** __restrict sp)
{
long double result;
strtopx(s, sp, result);
strtopx(s, sp, &result);
return result;
}