forked from Imagelibrary/rtems
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
29 lines
592 B
C
29 lines
592 B
C
/*
|
|
* _calloc_r Implementation
|
|
*
|
|
* 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.com/license/LICENSE.
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#if defined(RTEMS_NEWLIB) && !defined(HAVE__CALLOC_R)
|
|
#include <sys/reent.h>
|
|
#include <stdlib.h>
|
|
|
|
void *_calloc_r(
|
|
struct _reent *ignored __attribute__((unused)),
|
|
size_t elements,
|
|
size_t size
|
|
)
|
|
{
|
|
return calloc( elements, size );
|
|
}
|
|
#endif
|