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
Line 
1/*
2 *  UNIX Port C Library Support
3 *
4 *  COPYRIGHT (c) 1989-2007.
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
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#if defined(RTEMS_UNIXLIB)
19
20void libc_init(int reentrant)
21{
22}
23
24#else
25
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
34#endif
Note: See TracBrowser for help on using the repository browser.