]> git.saurik.com Git - apple/xnu.git/blobdiff - libsyscall/wrappers/posix_sem_obsolete.c
xnu-4903.270.47.tar.gz
[apple/xnu.git] / libsyscall / wrappers / posix_sem_obsolete.c
index 396a1c6edbfcf3713272abb5da064d9f7150d3b0..15c33549a124dce84ac63b05583d33f7c787b3f6 100644 (file)
  * syscalls.master. Instead, provide simple stubs here.
  */
 
-int sem_destroy(sem_t *s __unused)
+int
+sem_destroy(sem_t *s __unused)
 {
        errno = ENOSYS;
        return -1;
 }
 
-int sem_getvalue(sem_t * __restrict __unused s, int * __restrict __unused x)
+int
+sem_getvalue(sem_t * __restrict __unused s, int * __restrict __unused x)
 {
        errno = ENOSYS;
        return -1;
 }
 
-int sem_init(sem_t * __unused s, int __unused x, unsigned int __unused y)
+int
+sem_init(sem_t * __unused s, int __unused x, unsigned int __unused y)
 {
        errno = ENOSYS;
        return -1;