source: rtems/cpukit/libcsupport/src/rtems_heap_null_extend.c @ 255fe43

Last change on this file since 255fe43 was 255fe43, checked in by Joel Sherrill <joel@…>, on 03/01/22 at 20:40:44

cpukit/: Scripted embedded brains header file clean up

Updates #4625.

  • Property mode set to 100644
File size: 428 bytes
Line 
1/*
2 * Copyright (c) 2012 embedded brains GmbH.  All rights reserved.
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
8
9#ifdef HAVE_CONFIG_H
10#include "config.h"
11#endif
12
13#include <rtems/malloc.h>
14
15void *rtems_heap_null_extend(
16  Heap_Control *heap RTEMS_UNUSED,
17  size_t alloc_size RTEMS_UNUSED
18)
19{
20  return NULL;
21}
Note: See TracBrowser for help on using the repository browser.