summaryrefslogtreecommitdiff
path: root/ace/OS_Memory.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/OS_Memory.inl')
-rw-r--r--ace/OS_Memory.inl11
1 files changed, 1 insertions, 10 deletions
diff --git a/ace/OS_Memory.inl b/ace/OS_Memory.inl
index a0cb82573e9..3c4912199de 100644
--- a/ace/OS_Memory.inl
+++ b/ace/OS_Memory.inl
@@ -1,16 +1,7 @@
+// -*- C++ -*-
// $Id$
#if !defined (ACE_LACKS_SBRK)
# include "ace/os_include/os_unistd.h"
#endif /* !ACE_LACKS_SBRK */
-ACE_INLINE void *
-ACE_OS_Memory::sbrk (int brk)
-{
-#if defined (ACE_LACKS_SBRK)
- ACE_UNUSED_ARG (brk);
- ACE_NOTSUP_RETURN (0);
-#else
- ACE_OSCALL_RETURN (::sbrk (brk), void *, 0);
-#endif /* VXWORKS */
-}