summaryrefslogblamecommitdiffstats
path: root/cpukit/libcsupport/src/malloc.c
blob: 3e55a94c83c035c795e44a77184373c7e085fab8 (plain) (tree)
1
2
3
4
5
6
7
8
9

         
  




                                             
                            
                                                    
  

                                                           
                                         

   
                    


                   
                   
                   
                  
 
                     




              
                           
 



                    
                                                                        
                       

                      

   
                     
 
 
      
/**
 *  @file
 *
 *  @brief RTEMS Malloc Family Implementation
 *  @ingroup libcsupport
 */

/*
 *  COPYRIGHT (c) 1989-2007.
 *  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.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifdef RTEMS_NEWLIB
#include <stdlib.h>
#include <errno.h>

#include "malloc_p.h"

void *malloc(
  size_t  size
)
{
  void        *return_this;

  if ( size == 0 ) {
    return NULL;
  }

  return_this = rtems_heap_allocate_aligned_with_boundary( size, 0, 0 );
  if ( !return_this ) {
    errno = ENOMEM;
    return (void *) 0;
  }

  return return_this;
}

#endif