1#ifndef _SYS_SEM_H
2# include <sysvipc/sys/sem.h>
3
4# ifndef _ISOMAC
5
6__typeof__ (semtimedop) __semtimedop attribute_hidden;
7
8#if __TIMESIZE == 64
9# define __semctl64 __semctl
10#else
11extern int __semctl64 (int semid, int semnum, int cmd, ...);
12libc_hidden_proto (__semctl64);
13#endif
14
15# endif
16#endif
17