source: rtems/c/src/lib/libc/unixlibc.c @ bde9bb5

4.104.114.84.95
Last change on this file since bde9bb5 was 9c49db4, checked in by Joel Sherrill <joel.sherrill@…>, on 01/08/01 at 18:26:44

2001-01-08 Ralf Corsepius <corsepiu@…>

  • configure.in: Add libc/config.h
  • libc/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • libc/.cvsignore: Add config.h and stamp-h
  • libc/*.c: Add config.h support.
  • Property mode set to 100644
File size: 605 bytes
Line 
1/*
2 *  $Id$
3 *  UNIX Port C Library Support
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
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.OARcorp.com/rtems/license.html.
11 *
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <rtems.h>
19
20#if defined(RTEMS_UNIXLIB)
21
22void libc_init(int reentrant)
23{
24}
25
26#else
27 
28/* remove ANSI errors.
29 *  A program must contain at least one external-declaration
30 *  (X3.159-1989 p.82,L3).
31 */
32void unixlibc_dummy_function( void )
33{
34}
35
36#endif
Note: See TracBrowser for help on using the repository browser.