Files
rtems/testsuites/psxtests/psxmsgq01/init.c
1999-11-17 17:51:34 +00:00

28 lines
564 B
C

/*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.OARcorp.com/rtems/license.html.
*
* $Id$
*/
#define CONFIGURE_INIT
#include "system.h"
#include <sched.h>
void *POSIX_Init(
void *argument
)
{
puts( "\n\n*** POSIX MESSAGE QUEUE TEST ***" );
puts( "*** END OF POSIX MESSAGE QUEUE TEST ***" );
exit( 0 );
return NULL; /* just so the compiler thinks we returned something */
}