summaryrefslogtreecommitdiff
path: root/pthread/pt-yield.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-03-28 00:50:04 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-03-28 00:50:04 +0200
commit05cefb83e22c08aedf5d3b893ad387eb6424faba (patch)
tree20bdecf3032d11716c94afa3a7bb085f5b70493a /pthread/pt-yield.c
parent85b62d7aaedb24b6ad07d437e5b8560f62d07529 (diff)
Fix coding style
Diffstat (limited to 'pthread/pt-yield.c')
-rw-r--r--pthread/pt-yield.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pthread/pt-yield.c b/pthread/pt-yield.c
index 5cf6c8b..0dee959 100644
--- a/pthread/pt-yield.c
+++ b/pthread/pt-yield.c
@@ -19,7 +19,8 @@
#include <pthread.h>
#include <sched.h>
-int pthread_yield(void)
+int
+pthread_yield (void)
{
return sched_yield ();
}