Chromium Code Reviews

Side by Side Diff: fusl/arch/generic/bits/fenv.h

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 #define FE_ALL_EXCEPT 0 1 #define FE_ALL_EXCEPT 0
2 #define FE_TONEAREST 0 2 #define FE_TONEAREST 0
3 3
4 typedef unsigned long fexcept_t; 4 typedef unsigned long fexcept_t;
5 5
6 typedef struct { 6 typedef struct { unsigned long __cw; } fenv_t;
7 » unsigned long __cw;
8 } fenv_t;
9 7
10 #define FE_DFL_ENV ((const fenv_t *) -1) 8 #define FE_DFL_ENV ((const fenv_t*)-1)
OLDNEW

Powered by Google App Engine