summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/__brk.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-10 14:30:26 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-10 14:30:26 +0000
commitdc6b394df014ae45c2c78648a40cd3ce9ab8c133 (patch)
tree26ad32cd3114b33d576ad5ef023d9736dc8ac1bc /cpukit/libcsupport/src/__brk.c
parent2010-07-10 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-dc6b394df014ae45c2c78648a40cd3ce9ab8c133.tar.bz2
2010-07-10 Joel Sherrill <joel.sherrilL@OARcorp.com>
* libcsupport/Makefile.am: Remove these files as they are uused. * libcsupport/src/__brk.c, libcsupport/src/__sbrk.c: Removed.
Diffstat (limited to 'cpukit/libcsupport/src/__brk.c')
-rw-r--r--cpukit/libcsupport/src/__brk.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/cpukit/libcsupport/src/__brk.c b/cpukit/libcsupport/src/__brk.c
deleted file mode 100644
index 1a358d14cd..0000000000
--- a/cpukit/libcsupport/src/__brk.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * RTEMS "Broken" __brk Implementation
- *
- * NOTE: sbrk() is provided by each BSP.
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#if defined(RTEMS_NEWLIB) && !defined(HAVE___BRK)
-
-#include <errno.h>
-#include <rtems/seterr.h>
-
-int __brk(
- const void *endds __attribute__((unused))
-)
-{
- rtems_set_errno_and_return_minus_one( EINVAL );
-}
-#endif