forked from Imagelibrary/rtems
* libcsupport/include/chain.h, libcsupport/include/clockdrv.h, libcsupport/include/ringbuf.h, libcsupport/include/spurious.h, libcsupport/include/timerdrv.h, libcsupport/include/vmeintr.h, libcsupport/include/motorola/mc68230.h, libcsupport/include/rtems/assoc.h, libcsupport/include/rtems/libio.h, libcsupport/include/rtems/libio_.h, libcsupport/include/rtems/termiostypes.h, libcsupport/include/zilog/z8036.h, libcsupport/include/zilog/z8530.h, libcsupport/include/zilog/z8536.h, libcsupport/src/__gettod.c, libcsupport/src/assoc.c, libcsupport/src/assocnamebad.c, libcsupport/src/error.c, libcsupport/src/libio.c, libcsupport/src/libio_sockets.c, libcsupport/src/malloc.c, libcsupport/src/no_libc.c, libcsupport/src/termios.c, libcsupport/src/termiosreserveresources.c: Convert to using c99 fixed-size types.
60 lines
883 B
C
60 lines
883 B
C
/*
|
|
* This file contains stubs for the reentrancy hooks when
|
|
* an unknown C library is used.
|
|
*
|
|
* 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.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems.h>
|
|
#if !defined(RTEMS_NEWLIB) && !defined(RTEMS_UNIX)
|
|
|
|
#include <rtems/libcsupport.h>
|
|
|
|
#include <stdlib.h> /* for free() */
|
|
|
|
void libc_init(
|
|
int reentrant
|
|
)
|
|
{
|
|
}
|
|
|
|
void libc_suspend_main(void)
|
|
{
|
|
}
|
|
|
|
|
|
void libc_global_exit(
|
|
uint32_t code
|
|
)
|
|
{
|
|
}
|
|
|
|
void _exit(
|
|
int status
|
|
)
|
|
{
|
|
}
|
|
|
|
#else
|
|
|
|
/* remove ANSI errors.
|
|
* A program must contain at least one external-declaration
|
|
* (X3.159-1989 p.82,L3).
|
|
*/
|
|
void no_libc_dummy_function( void )
|
|
{
|
|
}
|
|
|
|
#endif
|