source: rtems/cpukit/libmisc/dummy/dummy.c @ f26145b

4.104.114.84.95
Last change on this file since f26145b was 3239698, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/15/04 at 13:26:21

Remove stray white spaces.

  • Property mode set to 100644
File size: 887 bytes
Line 
1/*  Init
2 *
3 *
4 *  Input parameters:  NONE
5 *
6 *  Output parameters:  NONE
7 *
8 *  COPYRIGHT (c) 1989-1999.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.com/license/LICENSE.
14 *
15 *  $Id$
16 */
17
18#ifdef HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems.h>
23
24rtems_task Init(
25  rtems_task_argument ignored
26)
27{
28}
29
30int main( int, char **, char **);
31
32/* configuration information */
33
34#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
35#define CONFIGURE_MAXIMUM_TASKS 10
36#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
37#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 20
38#define CONFIGURE_INIT_TASK_ENTRY_POINT   (void *)main
39
40#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
41#define CONFIGURE_INIT
42
43#include <rtems/confdefs.h>
44
45/* global variables */
Note: See TracBrowser for help on using the repository browser.