source: rtems/c/src/ada-tests/support/init.c @ ad9865e

4.104.114.84.95
Last change on this file since ad9865e was ad9865e, checked in by Joel Sherrill <joel.sherrill@…>, on 06/02/97 at 23:46:41

* empty log message *

  • Property mode set to 100644
File size: 615 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
3 *  On-Line Applications Research Corporation (OAR).
4 *  All rights assigned to U.S. Government, 1994.
5 *
6 *  This material may be reproduced by or for the U.S. Government pursuant
7 *  to the copyright license under the clause at DFARS 252.227-7013.  This
8 *  notice must appear in all copies of this file and its derivatives.
9 *
10 *  $Id$
11 */
12
13#include <bsp.h>
14
15void *POSIX_Init(
16  void *argument
17)
18{
19  extern int gnat_main ( int argc, char **argv, char **envp );
20
21  (void) gnat_main ( 0, 0, 0 );
22
23  exit( 0 );
24}
25
26#define CONFIGURE_INIT
27#include "config.h"
Note: See TracBrowser for help on using the repository browser.