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

Unified Diff: fusl/include/ucontext.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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/include/ucontext.h
diff --git a/fusl/include/ucontext.h b/fusl/include/ucontext.h
index 3bb776ed6a86969a530a558ff81506cfc7ccbb4b..5164ef1879447664c9b992cabe74be885f1c7bc0 100644
--- a/fusl/include/ucontext.h
+++ b/fusl/include/ucontext.h
@@ -9,15 +9,15 @@ extern "C" {
#include <signal.h>
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
-#define NGREG (sizeof(gregset_t)/sizeof(greg_t))
+#define NGREG (sizeof(gregset_t) / sizeof(greg_t))
#endif
struct __ucontext;
-int getcontext(struct __ucontext *);
-void makecontext(struct __ucontext *, void (*)(void), int, ...);
-int setcontext(const struct __ucontext *);
-int swapcontext(struct __ucontext *, const struct __ucontext *);
+int getcontext(struct __ucontext*);
+void makecontext(struct __ucontext*, void (*)(void), int, ...);
+int setcontext(const struct __ucontext*);
+int swapcontext(struct __ucontext*, const struct __ucontext*);
#ifdef __cplusplus
}

Powered by Google App Engine
This is Rietveld 408576698