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 |
} |