blob: 85177a632db2e22e563ee3fbcfe0193b9ae79746 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _SYS_SHM_H
#include <sysvipc/sys/shm.h>
#ifndef _ISOMAC
# if __TIMESIZE == 64
# define __shmctl64 __shmctl
# else
extern int __shmctl64 (int shmid, int cmd, struct __shmid64_ds *buf);
libc_hidden_proto (__shmctl64);
# endif
#endif /* _ISOMAC */
#endif /* _SYS_SHM_H */
|