source: rtems/c/src/lib/libc/no_libc.c @ 0cf5bd6

4.104.114.84.95
Last change on this file since 0cf5bd6 was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 862 bytes
Line 
1#if  !defined(RTEMS_LIBC) && !defined(RTEMS_NEWLIB) && !defined(RTEMS_UNIX)
2
3/*  no_libc.h
4 *
5 *  This file contains stubs for the reentrancy hooks when
6 *  an unknown C library is used.
7 *
8 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
9 *  On-Line Applications Research Corporation (OAR).
10 *  All rights assigned to U.S. Government, 1994.
11 *
12 *  This material may be reproduced by or for the U.S. Government pursuant
13 *  to the copyright license under the clause at DFARS 252.227-7013.  This
14 *  notice must appear in all copies of this file and its derivatives.
15 *
16 *  $Id$
17 */
18
19
20#include <rtems.h>
21
22#include "libcsupport.h"
23#include "internal.h"
24
25#include <stdlib.h>             /* for free() */
26
27void
28libc_init(int reentrant)
29{
30}
31
32void libc_suspend_main(void)
33{
34}
35
36
37void libc_global_exit(rtems_unsigned32 code)
38{
39}
40
41void _exit(int status)
42{
43}
44
45#endif
Note: See TracBrowser for help on using the repository browser.