diff options
Diffstat (limited to 'libpthread/nptl/pthread_condattr_getclock.c')
-rw-r--r-- | libpthread/nptl/pthread_condattr_getclock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpthread/nptl/pthread_condattr_getclock.c b/libpthread/nptl/pthread_condattr_getclock.c index 84de918a5..056515b1c 100644 --- a/libpthread/nptl/pthread_condattr_getclock.c +++ b/libpthread/nptl/pthread_condattr_getclock.c @@ -21,9 +21,9 @@ int -pthread_condattr_getclock (attr, clock_id) - const pthread_condattr_t *attr; - clockid_t *clock_id; +pthread_condattr_getclock ( + const pthread_condattr_t *attr, + clockid_t *clock_id) { *clock_id = (((((const struct pthread_condattr *) attr)->value) >> 1) & ((1 << COND_CLOCK_BITS) - 1)); |