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.inl20
1 files changed, 0 insertions, 20 deletions
diff --git a/ace/OS_Memory.inl b/ace/OS_Memory.inl
deleted file mode 100644
index 28a7c76bf74..00000000000
--- a/ace/OS_Memory.inl
+++ /dev/null
@@ -1,20 +0,0 @@
-// $Id$
-
-#if ! defined (ACE_PSOS_DIAB_MIPS)
-# include /**/ <stdlib.h>
-#endif /* ! ACE_PSOS_DIAB_MIPS */
-
-#if !defined (ACE_LACKS_UNISTD_H) && !defined (ACE_PSOS)
-# include /**/ <unistd.h>
-#endif /* !ACE_LACKS_UNISTD_H && !ACE_PSOS */
-
-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 */
-}