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

4.115
Last change on this file since a4bc4d6e was a4bc4d6e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/22/11 at 10:00:39

Add HAVE_CONFIG_H.

  • Property mode set to 100644
File size: 653 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 *  $Id$
11 */
12
13#ifdef HAVE_CONFIG_H
14#include "config.h"
15#endif
16
17#include "system.h"
18
19rtems_timer_service_routine Timer_handler(
20  rtems_id argument
21)
22{
23}
24
25rtems_asr Isr_handler(
26  rtems_signal_set signals
27)
28{
29}
30
31rtems_asr Asr_handler(
32  rtems_signal_set signals
33)
34{
35}
36
37rtems_task task_func(void)
38{
39}
40
41void null_func(void)
42{
43}
44
45rtems_status_code Empty_directive(void)
46{
47  return( RTEMS_SUCCESSFUL );
48}
Note: See TracBrowser for help on using the repository browser.