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.
24 lines
573 B
C
24 lines
573 B
C
/*
|
|
* Prototypes for RTEMS tmtests_empty_function.c.
|
|
*
|
|
* COPYRIGHT (c) 2011, Ralf Corsépius, Ulm/Germany.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef _TMTESTS_EMPTY_FUNCTION_H
|
|
#define _TMTESTS_EMPTY_FUNCTION_H
|
|
|
|
#include <rtems/rtems/status.h>
|
|
|
|
extern rtems_status_code benchmark_timer_empty_function( void );
|
|
|
|
extern void benchmark_timer_empty_operation(
|
|
int iteration,
|
|
void *argument
|
|
);
|
|
|
|
#endif /* _TMTESTS_EMPTY_FUNCTION_H */
|