Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(383)

Unified Diff: fusl/src/fenv/feupdateenv.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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/src/fenv/feupdateenv.c
diff --git a/fusl/src/fenv/feupdateenv.c b/fusl/src/fenv/feupdateenv.c
index 50cef8e5ca9bef27801c7993aa08c634489aa80b..124449004e97293b376b5785a91deefacf8c0531 100644
--- a/fusl/src/fenv/feupdateenv.c
+++ b/fusl/src/fenv/feupdateenv.c
@@ -1,9 +1,8 @@
#include <fenv.h>
-int feupdateenv(const fenv_t *envp)
-{
- int ex = fetestexcept(FE_ALL_EXCEPT);
- fesetenv(envp);
- feraiseexcept(ex);
- return 0;
+int feupdateenv(const fenv_t* envp) {
+ int ex = fetestexcept(FE_ALL_EXCEPT);
+ fesetenv(envp);
+ feraiseexcept(ex);
+ return 0;
}

Powered by Google App Engine
This is Rietveld 408576698