Chromium Code Reviews

Side by Side Diff: fusl/src/complex/cargl.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 "libm.h" 1 #include "libm.h"
2 2
3 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 3 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
4 long double cargl(long double complex z) 4 long double cargl(long double complex z) {
5 { 5 return carg(z);
6 » return carg(z);
7 } 6 }
8 #else 7 #else
9 long double cargl(long double complex z) 8 long double cargl(long double complex z) {
10 { 9 return atan2l(cimagl(z), creall(z));
11 » return atan2l(cimagl(z), creall(z));
12 } 10 }
13 #endif 11 #endif
OLDNEW

Powered by Google App Engine