This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
* Removed a useless cast in the kernel code.
tags/v0.99.beta14
Sam Hocevar
sam
19 years ago
parent
77b175db11
commit
4e55d282d2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
kernel/kernel.c
+ 1
- 1
kernel/kernel.c
View File
@@ -295,7 +295,7 @@ double sqrt(double x)
for(i = 0; i < 10; i++)
ret = (ret * ret + x) / (ret * 2.0);
return
(double)
ret;
return ret;
}
#endif /* __KERNEL__ */
Write
Preview
Loading…
Cancel
Save