source: rtems/testsuites/tmtests/tmoverhd/empty.c @ d1c5c01f

4.115
Last change on this file since d1c5c01f was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

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.

  • Property mode set to 100644
File size: 641 bytes
Line 
1/*
2 *
3 *  COPYRIGHT (c) 1989-1999.
4 *  On-Line Applications Research Corporation (OAR).
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 */
10
11#ifdef HAVE_CONFIG_H
12#include "config.h"
13#endif
14
15#include "system.h"
16
17rtems_timer_service_routine Timer_handler(
18  rtems_id argument
19)
20{
21}
22
23rtems_asr Isr_handler(
24  rtems_signal_set signals
25)
26{
27}
28
29rtems_asr Asr_handler(
30  rtems_signal_set signals
31)
32{
33}
34
35rtems_task task_func(void)
36{
37}
38
39void null_func(void)
40{
41}
42
43rtems_status_code Empty_directive(void)
44{
45  return( RTEMS_SUCCESSFUL );
46}
Note: See TracBrowser for help on using the repository browser.