From dc6b394df014ae45c2c78648a40cd3ce9ab8c133 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sat, 10 Jul 2010 14:30:26 +0000 Subject: 2010-07-10 Joel Sherrill * libcsupport/Makefile.am: Remove these files as they are uused. * libcsupport/src/__brk.c, libcsupport/src/__sbrk.c: Removed. --- cpukit/libcsupport/src/__brk.c | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 cpukit/libcsupport/src/__brk.c (limited to 'cpukit/libcsupport/src/__brk.c') 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 -#include - -int __brk( - const void *endds __attribute__((unused)) -) -{ - rtems_set_errno_and_return_minus_one( EINVAL ); -} -#endif -- cgit v1.2.3