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