source: rtems/cpukit/libcsupport/src/unixlibc.c @ 8a5186d5

4.104.114.84.95
Last change on this file since 8a5186d5 was 8a5186d5, checked in by Joel Sherrill <joel.sherrill@…>, on 05/14/07 at 17:56:54

2007-05-14 Joel Sherrill <joel.sherrill@…>

  • libcsupport/Makefile.am, libcsupport/src/unixlibc.c: Split off dummry rtems_io_register_name for use on unix.
  • libcsupport/src/unixlibc_io.c: New file.
  • Property mode set to 100644
File size: 579 bytes
RevLine 
[eb5a7e07]1/*
[07a3253d]2 *  UNIX Port C Library Support
3 *
[8a5186d5]4 *  COPYRIGHT (c) 1989-2007.
[07a3253d]5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
[0eae36c7]9 *  http://www.rtems.com/license/LICENSE.
[07a3253d]10 *
[8a5186d5]11 *  $Id$
[eb5a7e07]12 */
13
[9c49db4]14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
[ac7d5ef0]18#if defined(RTEMS_UNIXLIB)
19
20void libc_init(int reentrant)
21{
22}
23
[0c35efe]24#else
[50f32b11]25
[0c35efe]26/* remove ANSI errors.
27 *  A program must contain at least one external-declaration
28 *  (X3.159-1989 p.82,L3).
29 */
30void unixlibc_dummy_function( void )
31{
32}
33
[ac7d5ef0]34#endif
Note: See TracBrowser for help on using the repository browser.