source: rtems/cpukit/libcsupport/src/newlibc_init.c @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 863 bytes
Line 
1/*
2 *  Implementation of hooks for the CYGNUS newlib libc
3 *  These hooks set things up so that:
4 *       + '_REENT' is switched at task switch time.
5 *
6 *  COPYRIGHT (c) 1994 by Division Incorporated
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#if defined(RTEMS_NEWLIB)
19
20/*
21 *  Init libc for CYGNUS newlib
22 *
23 *  Set up _REENT to use our global libc_global_reent.
24 *  (newlib provides a global of its own, but we prefer our own name for it)
25 *
26 *  If reentrancy is desired (which it should be), then
27 *  we install the task extension hooks to maintain the
28 *  newlib reentrancy global variable _REENT on task
29 *  create, delete, switch, exit, etc.
30 *
31 */
32
33
34void
35libc_init(void)
36{
37}
38
39#endif
Note: See TracBrowser for help on using the repository browser.