source: rtems/c/src/tests/psxtests/psxcancel/init.c @ 08311cc3

4.104.114.84.95
Last change on this file since 08311cc3 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 550 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-1999.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.OARcorp.com/rtems/license.html.
8 *
9 *  $Id$
10 */
11
12#define CONFIGURE_INIT
13#include "system.h"
14#include <sched.h>
15
16void *POSIX_Init(
17  void *argument
18)
19{
20
21  puts( "\n\n*** POSIX CANCEL TEST ***" );
22
23  puts( "*** END OF POSIX CANCEL TEST ***" );
24  exit( 0 );
25
26  return NULL; /* just so the compiler thinks we returned something */
27}
Note: See TracBrowser for help on using the repository browser.