Chromium Code Reviews

Side by Side Diff: fusl/src/math/sqrtl.c

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 #include <math.h> 1 #include <math.h>
2 2
3 long double sqrtl(long double x) 3 long double sqrtl(long double x) {
4 { 4 /* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */
5 » /* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */ 5 return sqrt(x);
6 » return sqrt(x);
7 } 6 }
OLDNEW

Powered by Google App Engine