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