forked from Imagelibrary/rtems
28 lines
540 B
C
28 lines
540 B
C
/*
|
|
* Copyright (c) 2012 embedded brains GmbH. All rights reserved.
|
|
*
|
|
* embedded brains GmbH
|
|
* Obere Lagerstr. 30
|
|
* 82178 Puchheim
|
|
* Germany
|
|
* <rtems@embedded-brains.de>
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems/malloc.h>
|
|
|
|
void *rtems_heap_null_extend(
|
|
Heap_Control *heap RTEMS_UNUSED,
|
|
size_t alloc_size RTEMS_UNUSED
|
|
)
|
|
{
|
|
return NULL;
|
|
}
|