summaryrefslogtreecommitdiff
path: root/ace/OS_NS_sys_shm.inl
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-06-24 14:07:03 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-06-24 14:07:03 +0000
commit4eef16de27f9bc8527ca185d3112b1197018c741 (patch)
tree25fcc785732d1c76917deeb77631116602666408 /ace/OS_NS_sys_shm.inl
parent766c572e8e612d790479a0df038d2471f1229ee5 (diff)
downloadATCD-4eef16de27f9bc8527ca185d3112b1197018c741.tar.gz
ChangeLogTag: Thu Jun 24 07:03:27 2004 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'ace/OS_NS_sys_shm.inl')
-rw-r--r--ace/OS_NS_sys_shm.inl4
1 files changed, 0 insertions, 4 deletions
diff --git a/ace/OS_NS_sys_shm.inl b/ace/OS_NS_sys_shm.inl
index 4de31f06737..255f84d6b2a 100644
--- a/ace/OS_NS_sys_shm.inl
+++ b/ace/OS_NS_sys_shm.inl
@@ -8,11 +8,7 @@ ACE_OS::shmat (int int_id, void *shmaddr, int shmflg)
{
ACE_OS_TRACE ("ACE_OS::shmat");
#if defined (ACE_HAS_SYSV_IPC)
-# if defined (ACE_LACKS_POSIX_PROTOTYPES) || defined (ACE_LACKS_SOME_POSIX_PROTOTYPES)
- ACE_OSCALL_RETURN (::shmat (int_id, (char *)shmaddr, shmflg), void *, (void *) -1);
-# else
ACE_OSCALL_RETURN (::shmat (int_id, static_cast <char *> (shmaddr), shmflg), void *, (void *) -1);
-# endif /* ACE_LACKS_POSIX_PROTOTYPES */
#else
ACE_UNUSED_ARG (int_id);
ACE_UNUSED_ARG (shmaddr);