summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/rtems_heap_null_extend.c
blob: 63e7b4af73c43d7bd57ad8abd1f5a6474f643aef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2012 embedded brains GmbH.  All rights reserved.
 *
 * 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.
 */

#ifdef 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;
}